diff options
author | Lucas Fryzek <lucas.fryzek@fryzekconcepts.com> | 2023-12-06 13:25:22 -0500 |
---|---|---|
committer | Lucas Fryzek <lucas.fryzek@fryzekconcepts.com> | 2023-12-06 13:25:22 -0500 |
commit | 499e8256adb97496ad6c2fc7070326446c1e9870 (patch) | |
tree | 575284c11939c2b8684550779868fcde60d49a1d | |
parent | 43485f78c42be30774a7b3a92e6115b91713c2cf (diff) |
Update pandoc scripts
Check if global `PANDOC_DOCUMENT` is avaliable, and if its not
we will gather data using new pandoc `Writer` method.
-rw-r--r-- | tools/link_gen.lua | 28 | ||||
-rwxr-xr-x | tools/rss_gen.py | 1 |
2 files changed, 26 insertions, 3 deletions
diff --git a/tools/link_gen.lua b/tools/link_gen.lua index 04729d3..244c7ff 100644 --- a/tools/link_gen.lua +++ b/tools/link_gen.lua @@ -2,7 +2,13 @@ local pipe = pandoc.pipe local stringify = (require 'pandoc.utils').stringify local meta_tools = require("tools/meta_tools") -local meta = PANDOC_DOCUMENT.meta +-- Load meta from global if available +-- otherwise we will load it from Writer method +local meta = nil +if PANDOC_DOCUMENT then + meta = PANDOC_DOCUMENT.meta +end + local preview = "" local long_preview = "" local internal_links = {} @@ -40,6 +46,19 @@ local function get_input_file() return file end +function dump(o) + if type(o) == 'table' then + local s = '{ ' + for k,v in pairs(o) do + if type(k) ~= 'number' then k = '"'..k..'"' end + s = s .. '['..k..'] = ' .. dump(v) .. ',' + end + return s .. '} ' + else + return tostring(o) + end +end + function Doc(body, metadata, variables) local input_file = get_input_file() @@ -50,7 +69,7 @@ function Doc(body, metadata, variables) -- check if markdown version of the file exists if meta_tools.file_exists(markdown_file) then - links = meta_tools.read_link_file(link_file) + links = meta_tools.read_link_file(link_file) if not item_in_table(links, input_file) then table.insert(links, input_file) end @@ -117,6 +136,11 @@ function Link(s, tgt, tit, attr) return "" end +function Writer(doc, opts) + meta = doc.meta + return pandoc.write_classic(doc, opts) +end + -- Ignore functions we haven't implemented as we don't need them local meta = {} diff --git a/tools/rss_gen.py b/tools/rss_gen.py index 2d0dbee..f2b55c7 100755 --- a/tools/rss_gen.py +++ b/tools/rss_gen.py @@ -56,7 +56,6 @@ for note in notes: if cat in categories: found = True break - if not found: continue post_time = datetime.datetime.strptime(note["date"], "%Y-%m-%d") post_rfc_time = email.utils.formatdate(timeval=time.mktime(post_time.timetuple())) |