diff options
author | Karl Berry <karl@freefriends.org> | 2022-03-01 21:49:14 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2022-03-01 21:49:14 +0000 |
commit | 64d47978d293b786a19dd5881a3eb81117bd34bb (patch) | |
tree | efc4f219119f12d4d5f00e04953336d49cb095ce /Master/texmf-dist/doc/latex | |
parent | 3cf84fd68c1739227f31a3ccb629e950415d47ab (diff) |
markdown (1mar22) (branch)
git-svn-id: svn://tug.org/texlive/branches/branch2021.final@62317 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex')
-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} |