rmdfiltr
rmdfiltr copied to clipboard
New filter: Add current date
As of pandoc 2.17, the following is possible, which would make for a useful filter.
function Doc (body, meta, vars)
vars.date = vars.date or os.date '%B %e, %Y'
return body, vars
end