Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
K4zuki committed Apr 14, 2023
2 parents fe5cdf3 + a31ef82 commit 4f3c382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/docx-extract-bullet-lists.lua
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ if FORMAT == "docx" then
for _, blocks in ipairs(el.content) do
--debug(depth .. ", " .. #v .. ", " .. stringify(v))
for idx, block in ipairs(blocks) do
if block.tag ~= "Para" and block.tab ~= "Plain" then
if block.tag ~= "Para" and block.tag ~= "Plain" then
combine_para_plain(paras, depth)
paras = {}
if block.tag == "BulletList" then
Expand Down

0 comments on commit 4f3c382

Please sign in to comment.