About Social Code
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLucas Fryzek <lucas.fryzek@gmail.com>2023-02-11 10:40:01 -0500
committerLucas Fryzek <lucas.fryzek@gmail.com>2023-02-11 10:40:01 -0500
commit55732d65bced17326c94ff7bd7e93c281c1807ab (patch)
tree16dab7c0d27e2076863dd41750452d209afc2857 /tools
parent1d612cdbcfcb7eaa6c76ce74f0760e1530ce2b84 (diff)
Add inital draft of GGJ2023 post
Diffstat (limited to 'tools')
-rw-r--r--tools/note.lua6
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