diff options
| author | John MacFarlane <[email protected]> | 2022-02-28 08:38:03 -0800 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2022-02-28 08:38:03 -0800 |
| commit | dc0fdb2709342af94a0fa26d9b7179b4b9db12c2 (patch) | |
| tree | fbec22cbc7813ae042de19ce10245b5654c87ec5 | |
| parent | 97c4f3f23778681c8f5e05c133a117a529e16490 (diff) | |
DocBook reader: handle abstract in info section.
See #7747.
| -rw-r--r-- | src/Text/Pandoc/Readers/DocBook.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/DocBook.hs b/src/Text/Pandoc/Readers/DocBook.hs index 4138ca013..4594c934e 100644 --- a/src/Text/Pandoc/Readers/DocBook.hs +++ b/src/Text/Pandoc/Readers/DocBook.hs @@ -612,6 +612,7 @@ addMetadataFromElement e = do addMetaField "date" e addMetaField "release" e addMetaField "releaseinfo" e + addMetaField "abstract" e return mempty where addAuthor elt = |
