summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers/GridTable.hs
AgeCommit message (Collapse)Author
2023-01-10Update copyright years, it's 2023!Albert Krewinkel
2022-12-02Avoid using 'error' for unassigned table cells.John MacFarlane
Instead, throw a regular pandoc error. This is not necessarily a programming error, as it can be triggered by inserting a cell with ColSpan 0 in the AST. Unfortunately the types don't prevent that. Closes #8468.
2022-06-05Docx writer: prevent crashing when handling invalid tablesAlbert Krewinkel
Tables with different numbers of cells per row would sometimes crash pandoc. This fix prevents this by cutting off overlong rows. Fixes: #8102
2022-03-18Writers.GridTable: improve module documentation.Albert Krewinkel
2022-01-02Copyright notices: update for 2022Albert Krewinkel
2021-05-01Docx writer: support colspans and rowspans in tablesAlbert Krewinkel
See: #6315
2021-05-01Add new internal module Text.Pandoc.Writers.GridTableAlbert Krewinkel