HTML Table in markdown breaks rendering
Created by: Telmo
When trying to add an html table to a markdown file the rendering breaks and is interpreted as html instead of markdown.
The issue actually seems to be that a capitalization of the extension would break markdown parsing, .md vs .MD which I can understand, however html tables still not rendering within the markdown.
Example:
### Title
lore impsum blah blah blah
<table>
<tr><th>Foo</th><th>Bar</th></tr>
<tr><td>Hi</td><td>Mom</td></tr>
</table>