diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2019-09-03 08:49:45 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2019-09-03 08:49:45 +0200 |
commit | 78e35534cc90c8c0bde817eb02a2c21809b56dab (patch) | |
tree | 0084676eff1cfbb5d2727fa4cc384af37244dfc1 | |
parent | 9e4c194fa2957d3ce8bc49ad381e49a4ebff617a (diff) |
Add meta data readings from Pandoc plugin
Update the Pandoc plugin to read more YAML Pandoc meta data.
-rwxr-xr-x | .ikiwiki/IkiWiki/Plugin/pandoc.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ikiwiki/IkiWiki/Plugin/pandoc.pm b/.ikiwiki/IkiWiki/Plugin/pandoc.pm index 25081ef..cbc9cb7 100755 --- a/.ikiwiki/IkiWiki/Plugin/pandoc.pm +++ b/.ikiwiki/IkiWiki/Plugin/pandoc.pm @@ -452,7 +452,7 @@ sub htmlize ($@) { my @format_keys = grep { $_ ne 'pdf' } keys %extra_formats; my %scalar_meta = map { ($_=>undef) } qw( title date bibliography csl subtitle abstract summary - description version lang locale); + description version lang locale sortas titlesort tag tags); $scalar_meta{$_.'_template'} = undef for @format_keys; my %bool_meta = map { ("generate_$_"=>0) } keys %extra_formats; my %list_meta = map { ($_=>[]) } qw/author references/; |