Enable with .UseAbbreviations() (included in UseAdvancedExtensions()).
Abbreviations define expansions for acronyms and short terms. When the abbreviation appears in the text, it is wrapped in an <abbr> tag with a title attribute. Inspired by PHP Markdown Extra.
Define abbreviations anywhere in the document using *[ABBR]: Full text:
*[HTML]: Hyper Text Markup Language
*[CSS]: Cascading Style Sheets
This page uses HTML and CSS.
This page uses HTML and CSS.
<p>This page uses <abbr title="Hyper Text Markup Language">HTML</abbr>
and <abbr title="Cascading Style Sheets">CSS</abbr>.</p>