]> git.g-eek.se Git - ikiwiki-pandoc.git/commitdiff
Compatibility with pandoc 1.18+
authorBaldur Kristinsson <baldur.kristinsson@gmail.com>
Sun, 6 Nov 2016 14:24:14 +0000 (14:24 +0000)
committerBaldur Kristinsson <baldur.kristinsson@gmail.com>
Sun, 6 Nov 2016 14:24:14 +0000 (14:24 +0000)
pandoc.pm

index 5fe2d0a9504e57498f7c348d02a2afe585f25209..25081ef1207d1203637f3f345a2e688bb881d82d 100755 (executable)
--- a/pandoc.pm
+++ b/pandoc.pm
@@ -432,12 +432,15 @@ sub htmlize ($@) {
     waitpid $to_json_pid, 0;
 
     # Parse the title block out of the JSON and set the meta values
-    my @json_content = @{decode_json($json_content)};
-    my $meta = {};
-    if (ref $json_content[0] eq 'HASH') {
-        $meta = $json_content[0]->{'unMeta'};
-    }
-    else {
+    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'}) {
+        $meta = $decoded_json->{'Meta'} || {}; # post-1.18 version
+    } elsif (ref $decoded_json eq 'ARRAY') {
+        $meta = $decoded_json->[0]->{'unMeta'} || {}; # pre-1.18 version
+    }
+    unless ($meta) {
         warn "WARNING: Unexpected format for meta block. Incompatible version of Pandoc?\n";
     }