Skip to content

Commit 8c9348b

Browse files
committed
fix(packages): Fix bogus command in pandoc modules's definition lists leaking bold
1 parent c1e3669 commit 8c9348b

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

packages/lists/init.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,7 @@ function package:registerCommands ()
299299
end
300300
self:doItem(options, content)
301301
end)
302+
302303
end
303304

304305
package.documentation = [[

packages/pandoc/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ function package:registerCommands ()
280280

281281
self:registerCommand("ListItemTerm", function (_, content)
282282
SILE.call("smallskip")
283-
SILE.call("strong", content)
283+
SILE.call("strong", {}, content)
284284
SILE.typesetter:typeset(" : ")
285285
end)
286286

0 commit comments

Comments
 (0)