diff options
author | Volpeon <git@volpeon.ink> | 2020-12-28 18:23:37 +0100 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2020-12-28 18:23:37 +0100 |
commit | 598b5e44aa2f949ac470a46a9c850d62211cec42 (patch) | |
tree | 33308c365aff0f4b129d6d73d9c4521d870cfbe7 /filters | |
parent | Various small fixes, exclude raw ASCII fox from output (diff) | |
download | volpeon.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.lua | 3 |
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 @@ | |||
1 | function Link (el) | ||
2 | return { pandoc.Span(el.content), pandoc.Note { pandoc.Plain(pandoc.Link(el.content, el.target, el.title)) } } | ||
3 | end | ||