Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.4
-
None
-
Windows/Linux
-
Patch
Description
While working on project documentation I encountered a (at least I think) bug which is related to including images in tables. The example below doesnât result in an image shown in the table cell but instead shows the inclusion as text ().
||Symbol||Description|| |!images/symbol.png!|text|
After investigation I found out that the renderer of the table (TableBlockParser) only applies the ParagraphBlockParser and not other parsers like SectionBlockParser, FigureBlockParser, and ListBlockParser.
To fix this I created the included patch. With this patch applied to version 1.4 of Doxia the example as shown above was properly parsed.