texlive[62343] branches/branch2021.final/Master/texmf-dist: markdown
commits+karl at tug.org
commits+karl at tug.org
Wed Mar 2 22:34:33 CET 2022
Revision: 62343
http://tug.org/svn/texlive?view=revision&revision=62343
Author: karl
Date: 2022-03-02 22:34:33 +0100 (Wed, 02 Mar 2022)
Log Message:
-----------
markdown (2mar22) (branch)
Modified Paths:
--------------
branches/branch2021.final/Master/texmf-dist/doc/generic/markdown/VERSION
branches/branch2021.final/Master/texmf-dist/doc/generic/markdown/markdown.html
branches/branch2021.final/Master/texmf-dist/doc/generic/markdown/markdown.pdf
branches/branch2021.final/Master/texmf-dist/scripts/markdown/markdown-cli.lua
branches/branch2021.final/Master/texmf-dist/source/generic/markdown/markdown.dtx
branches/branch2021.final/Master/texmf-dist/tex/generic/markdown/markdown.tex
branches/branch2021.final/Master/texmf-dist/tex/luatex/markdown/markdown.lua
Modified: branches/branch2021.final/Master/texmf-dist/doc/generic/markdown/VERSION
===================================================================
--- branches/branch2021.final/Master/texmf-dist/doc/generic/markdown/VERSION 2022-03-02 21:34:20 UTC (rev 62342)
+++ branches/branch2021.final/Master/texmf-dist/doc/generic/markdown/VERSION 2022-03-02 21:34:33 UTC (rev 62343)
@@ -1 +1 @@
-2.14.0-0-g9635d76 (2022/02/28)
+2.14.1-0-gb933d81 (2022/03/01)
Modified: branches/branch2021.final/Master/texmf-dist/doc/generic/markdown/markdown.html
===================================================================
--- branches/branch2021.final/Master/texmf-dist/doc/generic/markdown/markdown.html 2022-03-02 21:34:20 UTC (rev 62342)
+++ branches/branch2021.final/Master/texmf-dist/doc/generic/markdown/markdown.html 2022-03-02 21:34:33 UTC (rev 62343)
@@ -82,7 +82,7 @@
<header id="title-block-header">
<h1 class="title">Markdown Package User Manual</h1>
<p class="author">Vít Novotný</p>
-<p class="date">2.14.0-0-g9635d76 (2022/02/28)</p>
+<p class="date">2.14.1-0-gb933d81 (2022/03/01)</p>
</header>
<nav id="TOC" role="doc-toc">
<ul>
Modified: branches/branch2021.final/Master/texmf-dist/doc/generic/markdown/markdown.pdf
===================================================================
(Binary files differ)
Modified: branches/branch2021.final/Master/texmf-dist/scripts/markdown/markdown-cli.lua
===================================================================
--- branches/branch2021.final/Master/texmf-dist/scripts/markdown/markdown-cli.lua 2022-03-02 21:34:20 UTC (rev 62342)
+++ branches/branch2021.final/Master/texmf-dist/scripts/markdown/markdown-cli.lua 2022-03-02 21:34:33 UTC (rev 62343)
@@ -58,7 +58,7 @@
-- those in the standard .ins files.
--
local metadata = {
- version = "2.14.0-0-g9635d76",
+ version = "2.14.1-0-gb933d81",
comment = "A module for the conversion from markdown to plain TeX",
author = "John MacFarlane, Hans Hagen, Vít Novotný",
copyright = {"2009-2016 John MacFarlane, Hans Hagen",
Modified: branches/branch2021.final/Master/texmf-dist/source/generic/markdown/markdown.dtx
===================================================================
--- branches/branch2021.final/Master/texmf-dist/source/generic/markdown/markdown.dtx 2022-03-02 21:34:20 UTC (rev 62342)
+++ branches/branch2021.final/Master/texmf-dist/source/generic/markdown/markdown.dtx 2022-03-02 21:34:33 UTC (rev 62343)
@@ -12503,8 +12503,10 @@
\def\markdownRendererTextCitePrototype#1{}%
\def\markdownRendererTablePrototype#1#2#3{}%
\def\markdownRendererInlineHtmlCommentPrototype#1{}%
-\def\markdownRendererBlockHtmlCommentBeginPrototype{\iffalse}%
-\def\markdownRendererBlockHtmlCommentEndPrototype{\fi}%
+\let\markdownRendererBlockHtmlCommentBeginPrototype=\iffalse
+\let\markdownRendererBlockHtmlCommentBegin=\iffalse
+\let\markdownRendererBlockHtmlCommentEndPrototype=\fi
+\let\markdownRendererBlockHtmlCommentEnd=\fi
\def\markdownRendererInlineHtmlTagPrototype#1{}%
\def\markdownRendererInputBlockHtmlElementPrototype#1{}%
\def\markdownRendererTickedBoxPrototype{}%
Modified: branches/branch2021.final/Master/texmf-dist/tex/generic/markdown/markdown.tex
===================================================================
--- branches/branch2021.final/Master/texmf-dist/tex/generic/markdown/markdown.tex 2022-03-02 21:34:20 UTC (rev 62342)
+++ branches/branch2021.final/Master/texmf-dist/tex/generic/markdown/markdown.tex 2022-03-02 21:34:33 UTC (rev 62343)
@@ -45,8 +45,8 @@
%%
%% The names of the source files used are shown above.
%%
-\def\markdownLastModified{2022/02/28}%
-\def\markdownVersion{2.14.0-0-g9635d76}%
+\def\markdownLastModified{2022/03/01}%
+\def\markdownVersion{2.14.1-0-gb933d81}%
\let\markdownBegin\relax
\let\markdownEnd\relax
\let\markdownInput\relax
@@ -335,8 +335,10 @@
\def\markdownRendererTextCitePrototype#1{}%
\def\markdownRendererTablePrototype#1#2#3{}%
\def\markdownRendererInlineHtmlCommentPrototype#1{}%
-\def\markdownRendererBlockHtmlCommentBeginPrototype{\iffalse}%
-\def\markdownRendererBlockHtmlCommentEndPrototype{\fi}%
+\let\markdownRendererBlockHtmlCommentBeginPrototype=\iffalse
+\let\markdownRendererBlockHtmlCommentBegin=\iffalse
+\let\markdownRendererBlockHtmlCommentEndPrototype=\fi
+\let\markdownRendererBlockHtmlCommentEnd=\fi
\def\markdownRendererInlineHtmlTagPrototype#1{}%
\def\markdownRendererInputBlockHtmlElementPrototype#1{}%
\def\markdownRendererTickedBoxPrototype{}%
Modified: branches/branch2021.final/Master/texmf-dist/tex/luatex/markdown/markdown.lua
===================================================================
--- branches/branch2021.final/Master/texmf-dist/tex/luatex/markdown/markdown.lua 2022-03-02 21:34:20 UTC (rev 62342)
+++ branches/branch2021.final/Master/texmf-dist/tex/luatex/markdown/markdown.lua 2022-03-02 21:34:33 UTC (rev 62343)
@@ -58,7 +58,7 @@
-- those in the standard .ins files.
--
local metadata = {
- version = "2.14.0-0-g9635d76",
+ version = "2.14.1-0-gb933d81",
comment = "A module for the conversion from markdown to plain TeX",
author = "John MacFarlane, Hans Hagen, Vít Novotný",
copyright = {"2009-2016 John MacFarlane, Hans Hagen",
More information about the tex-live-commits
mailing list.