drawdown
drawdown copied to clipboard
Markdown not recognized on line after table
Drawdown is great, but I did find one puzzling issue. Let's say you have a markdown table immediately followed by a line that has some character markdown, like this:
| Attribute | Required | Default |\n|-----------|----------| ------- |\n| enabled | No | False |\n| name | Yes | |\n| description | No | <empty string> |\nThis
string should be rendered as code.\n
The word string is surrounded by ` (backtick) but drawdown doesn't render it as code.
But if you add another '\n' after the end of the table, making a double line-break then the markdown on the word "string" will be recognized by drawdown and it will be rendered as code.
| Attribute | Required | Default |\n|-----------|----------| ------- |\n| enabled | No | False |\n| name | Yes | |\n| description | No | <empty string> |\n\nThis
string should be rendered as code.\n
It's not just the code markdown that doesn't work in this situation, also bold, italic, etc...