Lua: fixup, should have been part of previous commit

This commit is contained in:
Albert Krewinkel
2021-12-19 14:31:52 +01:00
parent a0af1b5926
commit dc3dcc2ccd
2 changed files with 6 additions and 3 deletions
+3
View File
@@ -116,6 +116,9 @@ otherConstructors =
, mkBlocks
, mkCitation
, mkCell
, mkRow
, mkTableHead
, mkTableFoot
, mkInlines
, mkListAttributes
, mkSimpleTable
+3 -3
View File
@@ -106,14 +106,14 @@ return {
{long = {pandoc.Plain {
pandoc.Str "the", pandoc.Space(), pandoc.Str "caption"}}},
{{pandoc.AlignDefault, nil}},
{pandoc.Attr(), {{pandoc.Attr(), {simple_cell{pandoc.Plain "head1"}}}}},
pandoc.TableHead{pandoc.Row{simple_cell{pandoc.Plain "head1"}}},
{{
attr = pandoc.Attr(),
body = {{pandoc.Attr(), {simple_cell{pandoc.Plain "cell1"}}}},
body = {pandoc.Row{simple_cell{pandoc.Plain "cell1"}}},
head = {},
row_head_columns = 0
}},
{pandoc.Attr(), {}},
pandoc.TableFoot(),
pandoc.Attr()
)
local stbl = utils.to_simple_table(tbl)