function wide(el) local els = pandoc.List() els:insert(pandoc.RawBlock("html", "")) if pcall(function() return #el end) then els:extend(el) else els:insert(el) end els:insert(pandoc.RawBlock("html", "
")) return els end return { wide = wide }