update `pandoc` data dir
parent
8f8f05a200
commit
d78dd9330c
|
@ -10,5 +10,4 @@ filters:
|
|||
- collect_internal_linked.lua
|
||||
- resolve_internal_links.lua
|
||||
- link_headings.lua
|
||||
- current_date.lua
|
||||
...
|
||||
|
|
|
@ -1,19 +0,0 @@
|
|||
SCRIPT_NAME = "current_date.lua"
|
||||
os.setlocale("C")
|
||||
|
||||
local utils = pandoc.utils
|
||||
|
||||
LOCALEMAP = {
|
||||
de = "de_DE.UTF-8",
|
||||
en = "en_US.UTF-8",
|
||||
it = "it_IT.UTF-8",
|
||||
sl = "sl_SI.UTF-8",
|
||||
}
|
||||
|
||||
return {
|
||||
{ Meta = function(m)
|
||||
os.setlocale(LOCALEMAP[utils.stringify(m.lang)])
|
||||
m.date = os.date("%c")
|
||||
return m
|
||||
end }
|
||||
}
|
|
@ -44,11 +44,6 @@ $abstract$
|
|||
</div>
|
||||
$endif$
|
||||
$body$
|
||||
$if(date)$
|
||||
<footer>
|
||||
<p>$date$</p>
|
||||
</footer>
|
||||
$endif$
|
||||
</article>
|
||||
<article id="recto">
|
||||
$for(parts)$
|
||||
|
|
Loading…
Reference in New Issue