About Social Code
summaryrefslogtreecommitdiff
path: root/tools/front_page.lua
diff options
context:
space:
mode:
authorLucas Fryzek <lucas.fryzek@gmail.com>2023-01-17 22:26:17 -0500
committerLucas Fryzek <lucas.fryzek@gmail.com>2023-01-17 22:26:17 -0500
commit0e9d903313ec491ac588b0b04e473e744675748d (patch)
tree89cdb0db3b0ea2a89823fae3f89d1ce1be5370c4 /tools/front_page.lua
parentc8d114231b6c75de87ae2d0b5ca65cf14102edff (diff)
Fix back linking to actually show links on pages
Diffstat (limited to 'tools/front_page.lua')
-rw-r--r--tools/front_page.lua21
1 files changed, 2 insertions, 19 deletions
diff --git a/tools/front_page.lua b/tools/front_page.lua
index 74731d8..9557a53 100644
--- a/tools/front_page.lua
+++ b/tools/front_page.lua
@@ -1,3 +1,4 @@
+local meta_tools = require("tools/meta_tools")
local function load_notes(note_list)
local notes = {}
@@ -7,24 +8,6 @@ local function load_notes(note_list)
return notes
end
-local function get_note(note_name)
- local file = io.open(string.format("build/%s.meta", note_name), "r")
- local note = {}
-
- for line in file:lines() do
- local sep = string.find(line, ",")
- local index = string.sub(line, 1, sep-1)
- local content = string.sub(line, sep+1, -1)
-
- note[index] = content
- end
-
- note["note_name"] = note_name
-
- file:close()
- return note
-end
-
local function compare_note_dates(a, b)
return a.last_edit > b.last_edit
end
@@ -36,7 +19,7 @@ function Pandoc(doc)
local notes = {}
local note_names = load_notes(doc.meta["note_list"])
for index, note in ipairs(note_names) do
- table.insert(notes, get_note(note))
+ table.insert(notes, meta_tools.get_note(note))
end
table.sort(notes, compare_note_dates)