summaryrefslogtreecommitdiffstats
path: root/filters
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2020-12-28 18:23:37 +0100
committerVolpeon <git@volpeon.ink>2020-12-28 18:23:37 +0100
commit598b5e44aa2f949ac470a46a9c850d62211cec42 (patch)
tree33308c365aff0f4b129d6d73d9c4521d870cfbe7 /filters
parentVarious small fixes, exclude raw ASCII fox from output (diff)
downloadvolpeon.ink-598b5e44aa2f949ac470a46a9c850d62211cec42.tar.gz
volpeon.ink-598b5e44aa2f949ac470a46a9c850d62211cec42.tar.bz2
volpeon.ink-598b5e44aa2f949ac470a46a9c850d62211cec42.zip
Improved CSS vars and scopes
Diffstat (limited to 'filters')
-rw-r--r--filters/links_to_refs.lua3
1 files changed, 3 insertions, 0 deletions
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 @@
1function Link (el)
2 return { pandoc.Span(el.content), pandoc.Note { pandoc.Plain(pandoc.Link(el.content, el.target, el.title)) } }
3end