Markdown DITA syntax
In 2015, the original DITA-OT Markdown plug-in introduced a series of conventions to convert Markdown content to DITA, and vice-versa. This Markdown flavor was called “Markdown DITA”. The markdown
format adds several complementary constructs to represent DITA content in Markdown, beyond those proposed for the MDITA format in the Lightweight DITA specification drafts.
To add a Markdown topic to a DITA publication, create a topic reference in your map and set the @format
attribute to markdown
. This allows the toolkit to recognize the source file as Markdown and convert it to DITA:
In this case, the first paragraph in the topic is treated as a body paragraph, and each heading level generates a nested topic.
The Markdown DITA format uses CommonMark as the underlying markup language, with several extensions as noted below. Markdown DITA files must be UTF-8 encoded.
The following Markdown constructs are parsed differently when the @format
attribute is set to markdown
.
Titles and document structure
Each heading level generates a topic and associated title:
Pandoc header attributes or PHP Markdown Extra special attributes can be used to define id
or outputclass
attributes:
If topic ID is not defined using header attributes, the ID is generated from title contents.
If the Markdown document doesn’t contain a level 1 heading, one is generated based on YAML metadata or from the document file name.
Topic content
In Markdown DITA documents, all paragraphs appear inside the body
element.
Specialization types
The following class values in header attributes have a special meaning on level 1 headings:
concept
task
reference
They can be used to change the Markdown DITA topic type to one of the built-in structural specialization types.
The other way to use specialization types is by defining a schema for the document.
Sections
The following class values in header attributes have a special meaning on heading levels other than 1:
section
example
They are used to generate section
and example
elements:
Tables
Tables use the MultiMarkdown table extension format:
Tables in Markdown DITA files are converted to the OASIS exchange table model:
Table cells may only contain inline content and column spans; block content and row spans are not supported in Markdown DITA.
Notes
Notes can be written using the syntax defined in the Material for MkDocs admonition extension.
Different note types can be defined by changing the type qualifier keyword.
Markdown DITA map syntax
DITA maps can be written in Markdown using standard Markdown syntax for links and lists.
In Markdown DITA, maps use the schema key in the YAML front matter block to define the file as a map:
Unordered list items create <topicref>
elements, and ordered list items create <topicref>
elements with collection-type="sequence"
.
Key definitions
Keys can be defined using standard Markdown syntax for link reference definitions.
Relationship tables
Relationship tables are tables with links inside cells.
Common syntax
The following common Markdown constructs are processed in the same way for both mdita
and markdown
topics.
Hard line breaks
A line break that is preceded by two or more spaces is parsed as a hard line break. Because DITA doesn’t have a <br>
element for line break, hard line breaks are converted into <?linebreak?>
processing instructions.
The LwDITA plug-in contains extensions for HTML5 and PDF outputs to generate line breaks.
Links
The format of local link targets is detected based on file name extension. The following extensions are treated as DITA files:
extension | format |
---|---|
|
|
|
|
|
|
|
|
All other link targets detect the format
from the file name extension and are treated as non-DITA files. Absolute link targets are treated as external scope links:
Images
Images used in inline content are processed with inline placement. If a block-level image contains a title, it is treated as an image wrapped in a figure element:
Key references
Keys can be referenced using standard Markdown syntax for shortcut reference links:
Inline
The following inline elements are supported:
Lists
Standard Markdown syntax is used for both ordered (numbered) and unordered (bulleted) lists.
Unordered list items can be marked up using either asterisks “ *
” or hyphens “ -
” as list markers:
Ordered lists use either numbers or number signs “ #
”, followed by a period:
Definition lists use the PHP Markdown Extra format with a single-line term followed by a colon and the definition:
Each definition list entry must have only one term and contain only inline content.
Metadata
A YAML metadata block as defined in the pandoc_metadata_block extension can be used to specify metadata elements for the DITA prolog.
The supported elements are:
author
source
publisher
permissions
audience
category
keyword
resourceid
Any unrecognized keys are output using the <data>
element.