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,9 @@
function Header(el)
if el.level == 1 then
return pandoc.Div(pandoc.Para(el.content), {['custom-style'] = 'Title'})
elseif el.level > 1 then
el.level = el.level - 1
return el
end
return el
end