diff options
Diffstat (limited to 'tools/front_page.lua')
-rw-r--r-- | tools/front_page.lua | 21 |
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) |