From 598b5e44aa2f949ac470a46a9c850d62211cec42 Mon Sep 17 00:00:00 2001 From: Volpeon Date: Mon, 28 Dec 2020 18:23:37 +0100 Subject: Improved CSS vars and scopes --- filters/links_to_refs.lua | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 filters/links_to_refs.lua (limited to 'filters') diff --git a/filters/links_to_refs.lua b/filters/links_to_refs.lua new file mode 100644 index 0000000..f19a0f9 --- /dev/null +++ b/filters/links_to_refs.lua @@ -0,0 +1,3 @@ +function Link (el) + return { pandoc.Span(el.content), pandoc.Note { pandoc.Plain(pandoc.Link(el.content, el.target, el.title)) } } +end -- cgit v1.2.3-54-g00ecf