diff options
author | Lucas Fryzek <lucas.fryzek@gmail.com> | 2023-01-17 22:26:17 -0500 |
---|---|---|
committer | Lucas Fryzek <lucas.fryzek@gmail.com> | 2023-01-17 22:26:17 -0500 |
commit | 0e9d903313ec491ac588b0b04e473e744675748d (patch) | |
tree | 89cdb0db3b0ea2a89823fae3f89d1ce1be5370c4 /tools/note.lua | |
parent | c8d114231b6c75de87ae2d0b5ca65cf14102edff (diff) |
Fix back linking to actually show links on pages
Diffstat (limited to 'tools/note.lua')
-rw-r--r-- | tools/note.lua | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/tools/note.lua b/tools/note.lua index 0d3aff3..16acbc8 100644 --- a/tools/note.lua +++ b/tools/note.lua @@ -1,6 +1,16 @@ local stringify = (require 'pandoc.utils').stringify +local meta_tools = require("tools/meta_tools") -local status_map = {"seadling", "budding", "evergreen"} +local status_map = {"seedling", "budding", "evergreen"} + +function Link(link) + if not string.find(link.target, "://") then + local note = meta_tools.get_note(link.target) + return {pandoc.Link(note["title"], "/notes/"..link.target..".html")} + else + return link + end +end function Pandoc(doc) doc.meta["main_class"] = "html-note-page" |