diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/pandoc.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data/pandoc.lua b/data/pandoc.lua index f0d773b2d..16387d27b 100644 --- a/data/pandoc.lua +++ b/data/pandoc.lua @@ -808,7 +808,8 @@ function M.global_filter() function is_filter_function(k) return M.Inline.constructor[k] or M.Block.constructor[k] or - k == "Meta" or k == "Doc" or k == "Pandoc" + k == "Meta" or k == "Doc" or k == "Pandoc" or + k == "Block" or k == "Inline" end for k, v in pairs(_G) do if is_filter_function(k) then |