From 55732d65bced17326c94ff7bd7e93c281c1807ab Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Sat, 11 Feb 2023 10:40:01 -0500 Subject: Add inital draft of GGJ2023 post --- tools/note.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tools') 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 -- cgit v1.2.3