Bug when rendering tables
See original GitHub issueThe following table isn’t recognized as a table:
| | ico | emoji | ico | emoji |
| - | --- | ----- | --- | ----- |
| [top](#table-of-contents) | :bowtie: | `:bowtie:` | :smile: | `:smile:` |
| [top](#table-of-contents) | :laughing: | `:laughing:` | :blush: | `:blush:` |
But this is:
| | ico | emoji | ico | emoji |
| -- | --- | ----- | --- | ----- |
| [top](#table-of-contents) | :bowtie: | `:bowtie:` | :smile: | `:smile:` |
| [top](#table-of-contents) | :laughing: | `:laughing:` | :blush: | `:blush:` |
Basically it looks like showdown is expecting multiple hyphens.
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
Markdown bug rendering tables - Github-Gist
Markdown bug rendering tables. ... Section 1: The table in section 1 does NOT render properly; Section 2: The table in section 2...
Read more >HTML Table Rendering Bug in Latest Microsoft Edge
The left table uses border-collapse: collapse; and repaints weirdly when input values are set and cleared. The right table uses border-collapse: ...
Read more >Error when rendering table to Excel or PDF - Alteryx Community
Solved: I can assure you, this is not what my table looks like when I use the browse tool - but as soon...
Read more >[BUG] HTML Table Rendering Bug with border-collapse
There is a border painting bug. The issue can be solved by resizing the browser or by setting any CSS rule that triggers...
Read more >The Table Plugin is rendering error message despite valid ...
Error rendering macro 'table-plus' : Notify your Confluence administrator that "Bob Swift Software - Table Plugin" requires a valid license.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Thanks for the detailed explanation, let’s hope GitHub’s implementation becomes less ambiguous and aligns itself more to commonmark’s table syntax then 👍
@connorjs
Just hit this very exact scenario myself, did you discover anything?