Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions first-line-indent/first-line-indent.lua
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ local header_code = {
-- @return meta the modified metadata block
local function add_header_includes(meta, blocks)

local header_includes = pandoc.List(blocks)
local header_includes = pandoc.MetaList( { pandoc.MetaBlocks(blocks) })

-- add any exisiting meta['header-includes']
-- it could be a MetaList or a single String
-- it can be MetaInlines, MetaBlocks or MetaList
if meta['header-includes'] then
if meta['header-includes'].t == 'MetaList' then
header_includes:extend(meta['header-includes'])
Expand All @@ -94,7 +94,7 @@ local function add_header_includes(meta, blocks)
end
end

meta['header-includes'] = pandoc.MetaBlocks(header_includes)
meta['header-includes'] = header_includes

return meta

Expand Down