diff --git a/examples/Makefile b/examples/Makefile index 61e7e8b6a..9b08ec477 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -9,7 +9,7 @@ LUACLI_OPTIONS=cacheDir=_markdown_example hashEnumerators=true \ definitionLists=true footnotes=true inlineFootnotes=true \ smartEllipses=true fencedCode=true contentBlocks=true pipeTables=true \ tableCaptions=true taskLists=true strikeThrough=true superscripts=true \ - subscripts=true + subscripts=true fancyLists=true OUTPUT=context-mkii.pdf context-mkiv.pdf latex-pdftex.pdf \ latex-luatex.pdf latex-xetex.pdf latex-tex4ht.html latex-tex4ht.css diff --git a/examples/context-mkii.tex b/examples/context-mkii.tex index cb1c45dff..3d6a2a2dc 100644 --- a/examples/context-mkii.tex +++ b/examples/context-mkii.tex @@ -20,6 +20,7 @@ \def\markdownOptionStrikeThrough{true} \def\markdownOptionSuperscripts{true} \def\markdownOptionSubscripts{true} +\def\markdownOptionFancyLists{true} % Set renderers of the Markdown module. \definetyping diff --git a/examples/context-mkiv.tex b/examples/context-mkiv.tex index f615311a4..86898f5b0 100644 --- a/examples/context-mkiv.tex +++ b/examples/context-mkiv.tex @@ -20,6 +20,7 @@ \def\markdownOptionStrikeThrough{true} \def\markdownOptionSuperscripts{true} \def\markdownOptionSubscripts{true} +\def\markdownOptionFancyLists{true} % Set renderers of the Markdown module. \definehighlight diff --git a/examples/example.md b/examples/example.md index abd15f1d8..e214aa2da 100644 --- a/examples/example.md +++ b/examples/example.md @@ -65,6 +65,16 @@ This is an ordered list: 7. the third item of an ordered list. +This is a fancy ordered list: + +e) The first item of an ordered list + + that spans several paragraphs, + +f) the second item of an ordered list, + +g) the third item of an ordered list. + This is an ordered list using hash enumerators: #. The first item of an ordered list diff --git a/examples/latex.tex b/examples/latex.tex index c2ad4332d..e29f9a418 100644 --- a/examples/latex.tex +++ b/examples/latex.tex @@ -30,6 +30,7 @@ strikeThrough, superscripts, subscripts, + fancyLists, ]{markdown} \begin{markdown*}{hybrid} ---