]> git.g-eek.se Git - ikiwiki-pandoc.git/commitdiff
Feature. Support of complex meta structures
authorGustav Eek <gustav.eek@fripost.org>
Mon, 20 Jan 2020 17:30:31 +0000 (18:30 +0100)
committerGustav Eek <gustav.eek@fripost.org>
Mon, 20 Jan 2020 17:51:53 +0000 (18:51 +0100)
Add support in *unwrap_c* for support of the structure: *MetaList*
with 2 x *MetaMap* with keys pointing to *MetaInlines*:

    ---
    references:
     - id: refone
       title: Ref-MetaInlines-in-MetaList
     - id: reftwo
       title: Ref-MetaInlines-in-MetaList
    ...

Actually it sounds complex but this fix should also be needed for the
simpler example of *MetaMap* with keys pointing at *MetaInlines*:

    ---
    experiment:
     key_first: Värde
     key_second: värde
    ...

pandoc.pm

index 7c4d731f0c3bc6e1399136186622f550a1b60505..be44a0643bb079fbd57d81a31ccf62248d604c0d 100755 (executable)
--- a/pandoc.pm
+++ b/pandoc.pm
@@ -773,6 +773,11 @@ sub unwrap_c {
     # Finds the deepest-level scalar value for 'c' in the data structure.
     # Lists with one element are replaced with the scalar, lists with more
     # than one element are returned as an arrayref containing scalars.
+    #
+    # Elements containing hash as keys are unwrapped. That is to
+    # support *MetaList* containing *MetaMap* with keys pointing to
+    # *MetaInlines*. Reference are examples of that structure. (hash unwrap)
+    #
     my $container = shift;
     if (ref $container eq 'ARRAY' && @$container > 1) {
         if (ref $container->[0] eq 'HASH' && $container->[0]->{t} =~ /^(?:Str|Space)$/) {
@@ -787,6 +792,8 @@ sub unwrap_c {
         return;
     } elsif (ref $container eq 'HASH' && $container->{c}) {
         return unwrap_c($container->{c});
+    } elsif (ref $container eq 'HASH' && keys $container->%*) { # (hash unwrap)
+        return {map { $_ => unwrap_c($container->{$_}) } keys $container->%*};
     } elsif (ref $container) {
         return;
     } else {