diff options
author | Karl Berry <karl@freefriends.org> | 2022-03-01 21:48:37 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2022-03-01 21:48:37 +0000 |
commit | 079a61be47724dece2e21f4c6c3259207da5bc65 (patch) | |
tree | f1e66dd422de438fc8aea3194527491f4afa0e44 /Master/texmf-dist/doc/latex/markdown/examples/latex.tex | |
parent | cd83186b6a2e004ec7ca663b8ee2013ffdfbf78e (diff) |
markdown (1mar22)
git-svn-id: svn://tug.org/texlive/trunk@62316 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/markdown/examples/latex.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/markdown/examples/latex.tex | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/markdown/examples/latex.tex b/Master/texmf-dist/doc/latex/markdown/examples/latex.tex index cf820dfa36d..337263d38fc 100644 --- a/Master/texmf-dist/doc/latex/markdown/examples/latex.tex +++ b/Master/texmf-dist/doc/latex/markdown/examples/latex.tex @@ -43,9 +43,30 @@ date: \today % Typeset the document `example.tex` that we prepared separately using the % Lua command-line interface of the Markdown package and that contains a % plain TeX representation of the document `example.md`. +\catcode`\%=12\relax \InputIfFileExists{./example.tex}{}{} +\catcode`\%=14\relax \begin{markdown} Here are some non-ASCII characters: *ěščřžýáíé*. \end{markdown} + +\begin{markdown*}{html, hybrid} +Here is some <b>HTML code</b> mixed *with Markdown*. In pdf \TeX, the HTML code +will be silently ignored, whereas in \TeX 4ht, the HTML code will be passed +through to the output: + +<table border="1"> + <tr> + <td>Emil</td> + <td>Tobias</td> + <td>Linus</td> + </tr> + <tr> + <td>16</td> + <td>14</td> + <td>10</td> + </tr> +</table> +\end{markdown*} \end{document} |