diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2019-07-05 15:30:34 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2019-07-05 15:30:34 +0200 |
commit | 95659a29d2cb47192afa00174ca65e92b1bdf217 (patch) | |
tree | d7abd77d84aa643c3d138648543b3d663ad58eb9 | |
parent | 420cd08692d4962155b23925eabc74d9002bf55d (diff) |
doc/*.html: Add 'keywords' and 'lang' tags.
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -49,6 +49,8 @@ $(HTML_ROOTDIR)/%.html: ./doc/%.md $(HTML_TEMPLATE) [ "$<" = "doc/index.md" ] && parent="" || parent="./index.html"; \ pandoc -sp -f markdown -t html+smart --css=$(CSS) --template=$(HTML_TEMPLATE) \ --variable=date:"$$(LC_TIME=C date +"Last modified on %a, %d %b %Y at %T %z" -d @"$$mtime")" \ + --variable=keywords:"interimap" \ + --variable=lang:"en" \ --variable=parent:"$$parent" \ --output="$@" -- "$<" |