]> git.g-eek.se Git - ikiwiki-pandoc.git/commitdiff
Correct capitalization of meta
authorMichael Letterle <michael.letterle@gmail.com>
Sat, 2 Feb 2019 17:54:04 +0000 (12:54 -0500)
committerMichael Letterle <michael.letterle@gmail.com>
Sat, 2 Feb 2019 17:54:04 +0000 (12:54 -0500)
This is needed at least for Pandoc 2.5

pandoc.pm

index 789e3888c24d5b89295dd12bb7d823ac24f1a971..2416192b8e5fc75fb456dd18e6bb95efb634e6d8 100755 (executable)
--- a/pandoc.pm
+++ b/pandoc.pm
@@ -435,7 +435,7 @@ sub htmlize ($@) {
     my $meta = undef;
     my $decoded_json = decode_json($json_content);
     # The representation of the meta block changed in pandoc version 1.18
-    if (ref $decoded_json eq 'HASH' && $decoded_json->{'Meta'}) {
+    if (ref $decoded_json eq 'HASH' && $decoded_json->{'meta'}) {
         $meta = $decoded_json->{'meta'} || {}; # post-1.18 version
     } elsif (ref $decoded_json eq 'ARRAY') {
         $meta = $decoded_json->[0]->{'unMeta'} || {}; # pre-1.18 version