DokuWiki reader: skip non-cell content after table row.

Closes #11739.
This commit is contained in:
John MacFarlane
2026-06-29 19:28:54 +02:00
parent 18ff8a8073
commit 612e143fbe
2 changed files with 45 additions and 5 deletions
+40
View File
@@ -0,0 +1,40 @@
```
% pandoc -f dokuwiki -t native
| a | extra stuff
| b | extra stuff
after
^D
[ Table
( "" , [] , [] )
(Caption Nothing [])
[ ( AlignDefault , ColWidthDefault ) ]
(TableHead ( "" , [] , [] ) [])
[ TableBody
( "" , [] , [] )
(RowHeadColumns 0)
[]
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Plain [ Str "a" ] ]
]
, Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Plain [ Str "b" ] ]
]
]
]
(TableFoot ( "" , [] , [] ) [])
, Para [ Str "after" ]
]
```