summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2018-01-09 22:35:40 +0000
committerKarl Berry <karl@freefriends.org>2018-01-09 22:35:40 +0000
commit9b0b462cc883d8c84c94de90d3efbb96c4f1edf5 (patch)
treecc5409882242e2046a5381e01c74ec010e332012 /Master/texmf-dist/tex
parent1dbc8fa89c0f6fc256c3c480740e52bd6d47ba05 (diff)
markdown (9jan18)
git-svn-id: svn://tug.org/texlive/trunk@46265 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex')
-rw-r--r--Master/texmf-dist/tex/generic/markdown/markdown.tex6
-rw-r--r--Master/texmf-dist/tex/luatex/markdown/markdown.lua10
2 files changed, 8 insertions, 8 deletions
diff --git a/Master/texmf-dist/tex/generic/markdown/markdown.tex b/Master/texmf-dist/tex/generic/markdown/markdown.tex
index 1e5d4618516..74f1ca40cfb 100644
--- a/Master/texmf-dist/tex/generic/markdown/markdown.tex
+++ b/Master/texmf-dist/tex/generic/markdown/markdown.tex
@@ -45,8 +45,8 @@
%%
%% The names of the source files used are shown above.
%%
-\def\markdownLastModified{2017/09/12}%
-\def\markdownVersion{2.5.4}%
+\def\markdownLastModified{2018/01/08}%
+\def\markdownVersion{2.5.5}%
\let\markdownBegin\relax
\let\markdownEnd\relax
\let\markdownInput\relax
@@ -211,7 +211,7 @@
\def\markdownRendererImagePrototype#1#2#3#4{}%
\def\markdownRendererContentBlockPrototype#1#2#3#4{}%
\def\markdownRendererContentBlockOnlineImagePrototype#1#2#3#4{}%
-\def\markdownRendererContentBlockCodePrototype#1#2#3#4{}%
+\def\markdownRendererContentBlockCodePrototype#1#2#3#4#5{}%
\def\markdownRendererUlBeginPrototype{}%
\def\markdownRendererUlBeginTightPrototype{}%
\def\markdownRendererUlItemPrototype{}%
diff --git a/Master/texmf-dist/tex/luatex/markdown/markdown.lua b/Master/texmf-dist/tex/luatex/markdown/markdown.lua
index fd190e628c6..61f2b734bbc 100644
--- a/Master/texmf-dist/tex/luatex/markdown/markdown.lua
+++ b/Master/texmf-dist/tex/luatex/markdown/markdown.lua
@@ -1,5 +1,5 @@
--
--- Copyright (C) 2009-2017 John MacFarlane, Hans Hagen
+-- Copyright (C) 2009-2016 John MacFarlane, Hans Hagen
--
-- Permission is hereby granted, free of charge, to any person obtaining
-- a copy of this software and associated documentation files (the
@@ -20,7 +20,7 @@
-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--
--- Copyright (C) 2017 Vít Novotný
+-- Copyright (C) 2018 Vít Novotný
--
-- This work may be distributed and/or modified under the
-- conditions of the LaTeX Project Public License, either version 1.3
@@ -58,11 +58,11 @@
-- those in the standard .ins files.
--
local metadata = {
- version = "2.5.4",
+ version = "2.5.5",
comment = "A module for the conversion from markdown to plain TeX",
author = "John MacFarlane, Hans Hagen, Vít Novotný",
- copyright = "2009-2017 John MacFarlane, Hans Hagen; " ..
- "2016-2017 Vít Novotný",
+ copyright = "2009-2016 John MacFarlane, Hans Hagen; " ..
+ "2016-2018 Vít Novotný",
license = "LPPL 1.3"
}
if not modules then modules = { } end