aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2025-05-09 10:51:23 +0200
committerJonas Smedegaard <dr@jones.dk>2025-05-09 10:51:23 +0200
commit63d03d95b457bfb7181a80b3e52b07eed6f38d02 (patch)
treef4c23cd6ad94e5444997fdfa0553ff4e7f03d4a6
parent46faf3c0e4ce9eaa5e163fe40f2b501f531144a1 (diff)
stop superfluously clear stack_next
-rw-r--r--_extensions/ruc-play/semantic-markdown/semantic-markdown.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/_extensions/ruc-play/semantic-markdown/semantic-markdown.lua b/_extensions/ruc-play/semantic-markdown/semantic-markdown.lua
index 6e21889..8d66624 100644
--- a/_extensions/ruc-play/semantic-markdown/semantic-markdown.lua
+++ b/_extensions/ruc-play/semantic-markdown/semantic-markdown.lua
@@ -308,7 +308,6 @@ function Statements (block)
-- end of element, push collected string to stack
if string.len(stack_next) > 0 and pos >= el.text:len() then
table.insert(stack, pandoc.Str(stack_next))
- stack_next = ""
end
-- done parsing current Inline element