diff options
author | Karl Berry <karl@freefriends.org> | 2024-02-18 21:05:58 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2024-02-18 21:05:58 +0000 |
commit | 45d62c355885e905db2a729761eb384ec447e931 (patch) | |
tree | a80c1c9bd45c98a38855f2ac39f1ac5233862747 /Master/texmf-dist/tex/luatex/markdown/markdown-tinyyaml.lua | |
parent | c503d4c5c13af6a3749ec30bfee14cffda84240c (diff) |
markdown (18feb24)
git-svn-id: svn://tug.org/texlive/trunk@69962 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/luatex/markdown/markdown-tinyyaml.lua')
-rw-r--r-- | Master/texmf-dist/tex/luatex/markdown/markdown-tinyyaml.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Master/texmf-dist/tex/luatex/markdown/markdown-tinyyaml.lua b/Master/texmf-dist/tex/luatex/markdown/markdown-tinyyaml.lua index 074ad79446e..36cef293ed9 100644 --- a/Master/texmf-dist/tex/luatex/markdown/markdown-tinyyaml.lua +++ b/Master/texmf-dist/tex/luatex/markdown/markdown-tinyyaml.lua @@ -633,8 +633,10 @@ function Parser:parseseq(line, lines, indent) error("did not find expected alphabetic or numeric character") elseif rest then -- Array entry with a value + local nextline = lines[1] + local indent2 = countindent(nextline) tremove(lines, 1) - tinsert(seq, self:parsescalar(rest, lines)) + tinsert(seq, self:parsescalar(rest, lines, indent2)) end end return seq |