Make metadata accessible from templates
This commit is contained in:
parent
4d59921aee
commit
a6ed61b4eb
1 changed files with 26 additions and 8 deletions
|
@ -1,23 +1,41 @@
|
||||||
|
local vars = {}
|
||||||
|
|
||||||
function fileExists(name)
|
function fileExists(name)
|
||||||
local f=io.open(name,"r")
|
local f=io.open(name,"r")
|
||||||
if f~=nil then io.close(f) return true else return false end
|
if f~=nil then io.close(f) return true else return false end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
local function countWords()
|
local function countWords()
|
||||||
local rawText = pandoc.pipe("pdftotext", {"output.pdf", "-"}, "")
|
local rawText = pandoc.pipe("pdftotext", {"output.pdf", "-"}, "")
|
||||||
return pandoc.pipe("wc", {"-w"}, rawText)
|
return pandoc.pipe("wc", {"-w"}, rawText)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function getVars(meta)
|
||||||
|
for k, v in pairs(meta) do
|
||||||
|
if v.t == 'MetaInlines' then
|
||||||
|
vars["$" .. k .. "$"] = v
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
Meta = function(meta)
|
Meta = function(meta)
|
||||||
if fileExists("output.pdf") then
|
getVars(meta)
|
||||||
meta["wordcount"] = countWords()
|
if fileExists("output.pdf") then
|
||||||
meta["secondpass"] = true
|
meta["wordcount"] = countWords()
|
||||||
|
meta["secondpass"] = true
|
||||||
|
end
|
||||||
|
return meta
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Str = function (el)
|
||||||
|
if vars[el.text] then
|
||||||
|
return pandoc.Span(vars[el.text])
|
||||||
|
else
|
||||||
|
return el
|
||||||
|
end
|
||||||
end
|
end
|
||||||
return meta
|
|
||||||
end,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue