MacBook-Pro-de-Oscar.local 2026-2-15:19:22:8

This commit is contained in:
oskar
2026-02-15 19:22:09 +01:00
parent be3fabc1a3
commit 0f37fc0519
19 changed files with 2363 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
function Para(el)
local blocks = {}
local inlines = {}
for _, inline in ipairs(el.content) do
if inline.t == "SoftBreak" or inline.t == "LineBreak" then
if #inlines > 0 then
table.insert(blocks, pandoc.Para(inlines))
inlines = {}
end
else
table.insert(inlines, inline)
end
end
if #inlines > 0 then
table.insert(blocks, pandoc.Para(inlines))
end
return blocks
end