Open ajalt opened 4 years ago
The GFM Spec allows a table's delimeter row to have a single hyphen per column.
The following code:
|a| |-| |b|
is valid table:
But the GFMFlavourDescriptor just parses it as text:
GFMFlavourDescriptor
Markdown:PARAGRAPH Markdown:TEXT '|a|' Markdown:EOL Markdown:TEXT '|-|' Markdown:EOL Markdown:TEXT '|b|'
which is rendered as:
<body><p>|a| |-| |b|</p></body>
The GFM Spec allows a table's delimeter row to have a single hyphen per column.
The following code:
is valid table:
But the
GFMFlavourDescriptor
just parses it as text:which is rendered as: