mrdocs::doc::DefinitionListBlock
A list of terms paired with definitions.
Synopsis
Declared in <mrdocs/Metadata/DocComment/Block/DefinitionListBlock.hpp>
struct DefinitionListBlock final
: BlockCommonBase<BlockKind::List>
Description
Syntax:
Markdown
: A lightweight markup language
: Created by John Gruber in 2004
HTML
: A standard markup language used to create web pages
: Used for structuring content on the internet
In HTML, it looks like:
<dl>
<dt>First Term</dt>
<dd>This is the definition of the first term.</dd>
<dt>Second Term</dt>
<dd>This is one definition of the second term. </dd>
<dd>This is another definition of the second term.</dd>
</dl>