summaryrefslogtreecommitdiffstats
path: root/filters
diff options
context:
space:
mode:
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