Skip to content

Commit

Permalink
fix(packages): Fix bogus command in pandoc modules's definition lists…
Browse files Browse the repository at this point in the history
… leaking bold
  • Loading branch information
alerque committed Nov 16, 2024
1 parent c1e3669 commit 8c9348b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/lists/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ function package:registerCommands ()
end
self:doItem(options, content)
end)

end

package.documentation = [[
Expand Down
2 changes: 1 addition & 1 deletion packages/pandoc/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ function package:registerCommands ()

self:registerCommand("ListItemTerm", function (_, content)
SILE.call("smallskip")
SILE.call("strong", content)
SILE.call("strong", {}, content)
SILE.typesetter:typeset(" : ")
end)

Expand Down

0 comments on commit 8c9348b

Please sign in to comment.