Closed
Description
Summary
(AsciiDoc - Description Lists)
For Asciidoc’s description list, we use MyST’s definition list. Note that this feature is not enabled by default and one needs to add deflist to myst_enable_extensions.
<term>
: <definition>
<term>
: <definition>
The Elastic Asciidoc engine defines multiple types of description lists which are formatted differently. The different types are specified by an attribute before the description list. For example, this specifies that the description list is of type ‘horizontal’:
[horizontal]
<term>:: <description>
<term>:: <description>
For now, they will all be converted as the standard MyST definition list.
To do
- Determine if Add initial support for structured settings references (yaml) #105 is a suitable replacement for definition lists
- Find any instances where this might not work as a replacement
- Update the migration tooling to convert d lists to yml
- Determine if we can use inline yml or if yml must be in an included file