diff options
author | Lucas Fryzek <lucas.fryzek@gmail.com> | 2023-02-11 10:40:01 -0500 |
---|---|---|
committer | Lucas Fryzek <lucas.fryzek@gmail.com> | 2023-02-11 10:40:01 -0500 |
commit | 55732d65bced17326c94ff7bd7e93c281c1807ab (patch) | |
tree | 16dab7c0d27e2076863dd41750452d209afc2857 /tools | |
parent | 1d612cdbcfcb7eaa6c76ce74f0760e1530ce2b84 (diff) |
Add inital draft of GGJ2023 post
Diffstat (limited to 'tools')
-rw-r--r-- | tools/note.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/note.lua b/tools/note.lua index 8a790fc..e422468 100644 --- a/tools/note.lua +++ b/tools/note.lua @@ -7,7 +7,11 @@ 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")} + local text = note["title"] + if string.len(stringify(link.content)) ~= 0 then + text = link.content + end + return {pandoc.Link(text, "/notes/"..link.target..".html")} else return link end |