summaryrefslogtreecommitdiff
path: root/macros/generic/markdown/examples/context.tex
blob: a049d9f81c05b986b0c58cc6850e31705adf3fb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
\enableregime[utf]
\usetypescript[modern][ec]
\setupbodyfont[10pt,rm]
\setupexternalfigures[location={local,global,default}]
\usemodule[t][markdown]
\def\markdownOptionHashEnumerators{true}
\def\markdownOptionDefinitionLists{true}
\def\markdownOptionSmartEllipses{true}
\def\markdownOptionFootnotes{true}
\def\markdownOptionInlineFootnotes{true}
\def\markdownOptionFencedCode{true}
\def\markdownOptionContentBlocks{true}
\def\markdownOptionPipeTables{true}
\def\markdownOptionTableCaptions{true}
\def\markdownOptionTaskLists{true}
\definetyping [latex]
\setuptyping  [latex] [option=TEX]
\starttext
% Typeset the document `example.md` by letting the Markdown package handle
% the conversion internally.
\markdownInput{./example.md}

% Typeset the document `example.tex` that we prepared separately using the
% Lua command-line interface and that contains a plain TeX representation
% of the document `example.md`.
\doiffileelse{./example.tex}{\input example}{}

\startmarkdown
Here are some non-ASCII characters: *ěščřžýáíé*
and ConTeXt special characters: *|*.
\stopmarkdown
\stoptext