This issue has been created
 
 
Markdown Syntax / cid:jira-generated-image-avatar-f1d9f4af-1bc8-47b8-b6fb-b31e6d6435f4 MARKDOWN-89 Open

Some wellfomed tables are not parsed correctly

 
View issue   ยท   Add comment
 

Issue created

 
cid:jira-generated-image-avatar-467dca98-2aa7-4e22-ad2e-fd23945923a7 Manuel Leduc created this issue on 28/Mar/25 15:39
 
Summary: Some wellfomed tables are not parsed correctly
Issue Type: cid:jira-generated-image-avatar-f1d9f4af-1bc8-47b8-b6fb-b31e6d6435f4 Bug
Affects Versions: 8.2
Assignee: Unassigned
Components: markdown+commonmark/1.2
Created: 28/Mar/25 15:39
Priority: cid:jira-generated-image-static-major-0cc37f24-528a-4a1a-bcfd-3e16cf69e460 Major
Reporter: Manuel Leduc
Description:

Reproduction steps

  1. Create a page with syntax markdown.
  2. Add the following below in the page.
  3. 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   |