Files
pandoc/test
John MacFarlane 098c48d79f RTF reader: fix tables parsed as deeply nested tables.
Closes #11682.

Fixes two bugs that caused a simple table to be read as a cascade of
nested tables:

* `\plain` reset the entire property record (including the in-table
  flag) via `const def`.  When a cell paragraph used `\plain` after
  `\intbl`, the in-table flag was cleared, so the next `\cell` closed
  the partially-built table and embedded it inside a new cell.  Per the
  RTF spec, `\plain` should reset only character formatting, so it now
  preserves paragraph/context properties (in-table, list level, outline
  level, hyperlink, anchor).

* `\row` was ignored and only `\trowd` started a new row.  Real-world
  RTF often emits a single `\trowd` and separates rows with `\row`, so
  every cell ended up in one row.  Both `\trowd` and `\row` now begin a
  fresh row (only when the current one has cells), and empty trailing
  rows are dropped when closing the table.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-06-03 16:36:29 +02:00
..
2023-01-13 09:13:27 -08:00
2026-05-14 11:58:19 +02:00
2025-09-15 12:45:28 +02:00
2024-02-13 23:10:42 -08:00
2024-11-06 10:04:33 -08:00
2024-11-06 10:04:33 -08:00
2024-12-27 11:10:48 -08:00
2025-11-05 12:49:46 +01:00
2024-05-31 09:38:34 -06:00
2025-09-15 12:45:28 +02:00
2023-07-06 12:20:20 -07:00
2025-11-05 12:49:46 +01:00
2024-05-15 18:08:13 -07:00
2025-09-15 12:45:28 +02:00