From 14375c5289e84690cacd0ec9b511cefef088f0a5 Mon Sep 17 00:00:00 2001 From: Volpeon Date: Sat, 2 Jan 2021 16:47:15 +0100 Subject: Use Pygments for syntax highlighting, design adjustments, preload fonts --- filters/macros.lua | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 filters/macros.lua (limited to 'filters/macros.lua') diff --git a/filters/macros.lua b/filters/macros.lua deleted file mode 100644 index 86e94ba..0000000 --- a/filters/macros.lua +++ /dev/null @@ -1,23 +0,0 @@ -function Div(el) - if el.attributes.macro == nil then - return el - end - - if el.attributes.macro == 'refs' and el.content[1].tag == 'BulletList' then - local newchildren = pandoc.List() - - newchildren:insert(pandoc.RawBlock('html', '')) - - el.content = newchildren - end - - return el.content -end -- cgit v1.2.3-54-g00ecf