aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2023-06-05 17:01:59 -0700
committerJohn MacFarlane <[email protected]>2023-06-05 17:01:59 -0700
commit2f7b4032d5f200bbe4eca9ef9b58643bf9a304a8 (patch)
treec24fad8bfd44d1e41763ffdc4fdc860e3a2fd9ce /src
parent2c8de4c12939d8f9c0df0950e1f16fdccb1d86e6 (diff)
ODT reader: allow lists in table cells. Closes #8892.
Diffstat (limited to 'src')
-rw-r--r--src/Text/Pandoc/Readers/ODT/ContentReader.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/ODT/ContentReader.hs b/src/Text/Pandoc/Readers/ODT/ContentReader.hs
index b0d7c9f48..7b8723dd0 100644
--- a/src/Text/Pandoc/Readers/ODT/ContentReader.hs
+++ b/src/Text/Pandoc/Readers/ODT/ContentReader.hs
@@ -793,6 +793,7 @@ read_table_cell :: ElementMatcher [Blocks]
read_table_cell = matchingElement NsTable "table-cell"
$ liftA (compactify.(:[]))
$ matchChildContent' [ read_paragraph
+ , read_list
]
----------------------