1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
local function load_notes(note_list)
local notes = {}
for note in string.gmatch(note_list, "%S+") do
table.insert(notes, note)
end
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
function Pandoc(doc)
doc.meta["front_page"] = true
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))
end
table.sort(notes, compare_note_dates)
local output = pandoc.MetaList({})
for index,note in ipairs(notes) do
local out_list = {}
if note["cover_image"] ~= nil then
local image = pandoc.RawBlock("html", string.format("<img src=\"%s\">", note.cover_image))
table.insert(out_list, image)
end
local header = pandoc.Header(2, note.title)
table.insert(out_list, header)
table.insert(out_list, pandoc.Para(string.format("%s...", note.preview)))
local out = pandoc.MetaBlocks(out_list)
output:insert(pandoc.MetaMap({link=string.format("/notes/%s.html", note.note_name), note=out}))
end
doc.meta["notes"] = output
return pandoc.Pandoc(doc.blocks, doc.meta)
end
|