In the following we provide a list of differences/enhancements to the original APT format that were incorporated in Doxia. Note that the original specification still applies to Doxia-1.0 (used e.g. by Maven-2.0.x), the changes outlined here only apply from Doxia-1.1 (used by Maven >= 2.1.x). Apart from some exceptions, these differences are usually 'backwards-compatible', i.e. any document that gets correctly processed by Aptconvert should also be a valid Doxia input file and lead to identical results when processed by a Doxia parser.
Contrary to the original APT parser, the Doxia APT parser does not put list items within paragraphs. Eg, the example given in the APT guide:
* List item 1.
will, for instance, produce the following html:
<li>List item 1.</li>
To get the same result as aptconvert, use
* List item 1.
which will produce:
<li><p>List item 1.</p></li>
Header cells are defined by an additional pipe character '|' at the beginning of the cell:
*-----------+-----------+ || Header 1 || Header 2 | *-----------+-----------+ | Cell 1 | Cell 2 | *-----------+-----------+
produces:
Header 1 | Header 2 |
---|---|
Cell 1 | Cell 2 |
Since 1.1, multi-lines cells are recognized with the character '\' at the end of the cells:
*-----------+-----------+ || Header 1 || Header 2 | *-----------+-----------+ | Cell\ | Cell 2 | | 1 | | *-----------+-----------+
produces:
Header 1 | Header 2 |
---|---|
Cell 1 | Cell 2 |
Contrary to the original APT format, section titles are not implicitly defined anchors. If you want an anchor for a section title you need to define it explicitly as such:
* {Anchors for section titles}
Contrary to the original APT format, an anchor/link is not its text with all non alphanumeric characters stripped. Ideally, an anchor should be a valid Doxia id, ie it must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods ("."). Any anchor that does not satisfy this pattern is transformed according to the following rules:
Note in particular that case is preserved in this conversation and that APT anchors and links are case-sensitive. So the anchor for the section title in the previous example would be Anchors_for_section_titles.
In Doxia-1.1 the notion of a 'local' link was introduced in addition to internal links and external links.
In the APT format used by Doxia-1.1, internal links have to be valid Doxia ids, as specified in the anchors section above.
Note in particular that internal links in APT do not start with '#'.
In the APT format used by Doxia-1.1, local links have to start with either ./ or ../ to distinguish them from internal links. E.g.,
{{{doc/standalone.html}Standalone}}
is not valid, it should be
{{{./doc/standalone.html}Standalone}}
Note in particular that the following link
{{{standalone.html}Standalone}}
will be interpreted as an internal link (dots are valid characters in anchor names). Since you most likely meant to link to another source document, you should again prepend a "./".
An external link should be a valid URI.
Contrary to the original APT format, a figure name has to be given fully with extension. For instance:
[/home/joe/docs/mylogo.jpeg] Figure caption