summaryrefslogtreecommitdiffstats
path: root/filters
diff options
context:
space:
mode:
Diffstat (limited to 'filters')
-rw-r--r--filters/common_actions.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/common_actions.lua b/filters/common_actions.lua
index 9ebcf17..fbbff6d 100644
--- a/filters/common_actions.lua
+++ b/filters/common_actions.lua
@@ -33,7 +33,7 @@ function Div(el)
33 33
34 newchildren:insert(pandoc.RawBlock('html', '<ul>')) 34 newchildren:insert(pandoc.RawBlock('html', '<ul>'))
35 35
36 for k, children in ipairs(el.content[1].content) do 36 for _, children in ipairs(el.content[1].content) do
37 newchildren:insert(pandoc.RawBlock('html', 37 newchildren:insert(pandoc.RawBlock('html',
38 '<li class="c-page__prefixed c-page__prefixed--ref">')) 38 '<li class="c-page__prefixed c-page__prefixed--ref">'))
39 newchildren:extend(children) 39 newchildren:extend(children)