Sign up for the 7-day free trial

New PDF setting: Show Company Name Yes/No

March 22nd, 2017

Just introduced a new settings in the Manual Settings screen, on the PDF tab:
Show company name (Yes/No)

Switching this setting off lets you hide your account’s Company Name from the generated PDF version, from both the PDf’s cover sheet and the headers of all pages (top left).


Added: Croatian translation for interface of live manuals

February 24th, 2017

Added today, thanks to Remaris Podrška, the user interface texts for the live manuals are now also available in Croatian.

(user interface texts automatically switch over with the language setting of your manual)

croatian


Added: Right to Left support for manuals in Hebrew

February 1st, 2017

Manuals with the language set to Hebrew will now automatically use Right to Left display:

hebrew-right-to-left


Passing Access Keys to the manual “hub page”

January 16th, 2017

As of today, we made it possible to pass Access Keys to your manual hub page.

This has two effects:

  1. The list of manuals on your hub page will be filtered down to only the manuals that this specific key provides access to.
  2. The Access Key is automatically passed to the manuals which clicking one of the manual “tiles on the hub page.

Free trial now allows Reader users

January 13th, 2017

We have now opened up the creation of Reader users to the free 30-day trial. This way trial users can fully evaluate the Private manual feature.


PDF output: now tweak the size and style of topic headers

December 9th, 2016

It is now possible to use different size for the topic titles in the PDF, depending on the topic level.

Use the following Custom CSS to tweak the sizes of the topic titles based on their “toc level”:

#topic-body .pdf-topic-level-1 h1.topic-header {
border-bottom: 10px solid #FF0000;
font-size: 32px;
color: #FF0000;
}
#topic-body .pdf-topic-level-2 h1.topic-header {
border-bottom: 5px solid #0000FF;
font-size: 26px;
color: #0000FF;
}
#topic-body .pdf-topic-level-3 h1.topic-header {
border-bottom: 3px solid #00FF00;
font-size: 20px;
color: #00FF00;
}
#topic-body .pdf-topic-level-4 h1.topic-header {
border-bottom: 1px solid #808080;
font-size: 14px;
color: #808080;
}


Square bullets

December 7th, 2016

square-bulletsNow available, a new “square” CSS class for turning your bullets into squares.

Here’s how to make a specific set of bullets use square bullets:

* item 1
* item 2
**(square) item 2.1
** item 2.2
** item 2.3
* item 3

(in the above example, the 2nd level set is made square).

So basically, you set the (square) class on the first bullet in a set.


New: force page breaks in PDF output

November 25th, 2016

In some case, users wanted more control over page breaks in the PDF output.
So we implemented a special “page-break” CSS class that can be set to paragraphs, forcing a page break before the paragraph.

To use it:

p(page-break). Paragraph body text, just proceed as you normally would, nothing to see here.


Fix: Expanding/collapsing in editor

November 22nd, 2016

toc-problemsIn some cases, collapsing then expanding a topic in the Table of Contents could cause an “overlapping text” display problem.
This happened primarily after having dragged a topic to a new location.

Fixed now!


Fixed for PDF output: image scaling problems in tables

September 21st, 2016

When using images in tables, this could create problems in the PDF output, that is, the images not scaling properly to fit the table width.

This scaling can now be corrected by setting a CSS class “table-wide” to your table, by inserting this line before the table contents:

table(table-wide).


« Previous PageNext Page »