diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-05-27 13:25:12 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-05-27 13:25:12 +0200 |
commit | 39fd3accaef7d8923eea2c715e822fa43a63c74c (patch) | |
tree | 768698b9325aa3b6c62f54a5edbe131fe1d88e85 /filters | |
parent | 35a01b7547ecc30a031c110d85c337a8466214f2 (diff) |
Remove unneded import in filter
Diffstat (limited to 'filters')
-rw-r--r-- | filters/anchored-h.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/filters/anchored-h.lua b/filters/anchored-h.lua index f5cb125..7d80121 100644 --- a/filters/anchored-h.lua +++ b/filters/anchored-h.lua @@ -1,4 +1,3 @@ -pandoc.utils = require 'pandoc.utils' if FORMAT:match 'html' then function Header(el) local l = pandoc.Link("ΒΆ", "#"..el.identifier) @@ -8,4 +7,3 @@ if FORMAT:match 'html' then return el end end - |