You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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...
The text was updated successfully, but these errors were encountered:
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
stringshould 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
stringshould be rendered as code.\n
It's not just the code markdown that doesn't work in this situation, also bold, italic, etc...
The text was updated successfully, but these errors were encountered: