From b6d364c734eb81b15eae8ff489cf3291cb6ecc9b Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Tue, 30 Apr 2019 22:33:13 +0000 Subject: markdown (30apr19) git-svn-id: svn://tug.org/texlive/trunk@50906 c570f23f-e606-0410-a88d-b1316a301751 --- .../context/third/markdown/examples/context.tex | 2 + .../doc/context/third/markdown/examples/example.md | 10 + .../texmf-dist/doc/generic/markdown/markdown.css | 1 + .../texmf-dist/doc/generic/markdown/markdown.html | 3968 +++++++++++--------- .../texmf-dist/doc/generic/markdown/markdown.pdf | Bin 412653 -> 429871 bytes .../doc/latex/markdown/examples/example.md | 10 + .../doc/latex/markdown/examples/latex.tex | 5 +- .../texmf-dist/scripts/markdown/markdown-cli.lua | 5 +- .../source/generic/markdown/markdown.dtx | 3181 ++++++++++++++-- .../tex/context/third/markdown/t-markdown.tex | 65 + .../texmf-dist/tex/generic/markdown/markdown.tex | 19 +- Master/texmf-dist/tex/latex/markdown/markdown.sty | 90 +- Master/texmf-dist/tex/luatex/markdown/markdown.lua | 2444 ++++++++++-- 13 files changed, 7470 insertions(+), 2330 deletions(-) (limited to 'Master') diff --git a/Master/texmf-dist/doc/context/third/markdown/examples/context.tex b/Master/texmf-dist/doc/context/third/markdown/examples/context.tex index 99c4eb9e5f2..7ed432344ac 100644 --- a/Master/texmf-dist/doc/context/third/markdown/examples/context.tex +++ b/Master/texmf-dist/doc/context/third/markdown/examples/context.tex @@ -10,6 +10,8 @@ \def\markdownOptionInlineFootnotes{true} \def\markdownOptionFencedCode{true} \def\markdownOptionContentBlocks{true} +\def\markdownOptionPipeTables{true} +\def\markdownOptionTableCaptions{true} \definetyping [latex] \setuptyping [latex] [option=TEX] \starttext diff --git a/Master/texmf-dist/doc/context/third/markdown/examples/example.md b/Master/texmf-dist/doc/context/third/markdown/examples/example.md index 73f5ab9c26a..8aeb423a204 100644 --- a/Master/texmf-dist/doc/context/third/markdown/examples/example.md +++ b/Master/texmf-dist/doc/context/third/markdown/examples/example.md @@ -28,6 +28,16 @@ This is a fenced code block: \end{document} ``` +This is a table: + +| Right | Left | Default | Center | +|------:|:-----|---------|:------:| +| 12 | 12 | 12 | 12 | +| 123 | 123 | 123 | 123 | +| 1 | 1 | 1 | 1 | + + : Demonstration of pipe table syntax. + This is a bullet list: * The first item of a bullet list diff --git a/Master/texmf-dist/doc/generic/markdown/markdown.css b/Master/texmf-dist/doc/generic/markdown/markdown.css index 5abe7013b44..f679065407c 100644 --- a/Master/texmf-dist/doc/generic/markdown/markdown.css +++ b/Master/texmf-dist/doc/generic/markdown/markdown.css @@ -345,6 +345,7 @@ table td { } abbr { + text-transform: lowercase; font-variant: small-caps; } diff --git a/Master/texmf-dist/doc/generic/markdown/markdown.html b/Master/texmf-dist/doc/generic/markdown/markdown.html index 203c1be5121..e6ed568bff0 100644 --- a/Master/texmf-dist/doc/generic/markdown/markdown.html +++ b/Master/texmf-dist/doc/generic/markdown/markdown.html @@ -86,7 +86,7 @@ code span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warni

Markdown Package User Manual

Vít Novotný

-

v2.7.0 (2019/04/04)

+

v2.8.1 (2019/04/30)