Skip to content

First-line-indent: fix bug with pre-existing header-includes #185

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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