Details
-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
8.2
-
None
-
Unknown
-
Description
Reproduction steps
- Create a page with syntax markdown.
- Add the following below in the page.
- save and view the page.
| a | b | | - |- | | c | d |
Expected
A table with two cells is displayed.
Actual
The page displays:
| a | b | | - |- | | c | d |
Observations
It seems mandatory to have three dashes to form a valid column for the current parser.
The table definition below is parsed and rendered correctly, and adding more dashes works as well
| a | b | | --- | --- | | c | d |