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
The output is not correct, due to a bug in the markdown parser (or misconfiguration).
The snippet:
# This is a header
blablabla
will result in the following HTML:
<p><H1>This is a header></p><p>blablabla</p>
This isn't correct, headers shouldn't be inside P blocks. Browsers will move the p block below the header. This causes too much space which is currently compensated in the CSS for header tags (negative margin), but should be corrected in the markdown parser.
The text was updated successfully, but these errors were encountered:
- Theme has corrected margin on Header elements. It corrected an issue
in the markdown parser which wraps headers with P elements (See #11).
- Backported changes to MarkdownSharp from
https://github.com/PKRoma/MarkdownSharp/
The output is not correct, due to a bug in the markdown parser (or misconfiguration).
The snippet:
# This is a header blablabla
will result in the following HTML:
This isn't correct, headers shouldn't be inside P blocks. Browsers will move the p block below the header. This causes too much space which is currently compensated in the CSS for header tags (negative margin), but should be corrected in the markdown parser.
The text was updated successfully, but these errors were encountered: