mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-11 13:54:50 +00:00
Partial rendering #186
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @macaba on GitHub (Feb 2, 2018).
I'm trying to partially render markdown injected inline with existing paragraph content:
So I'd like:
_italic_to render as:
<em>italic</em>rather than:
<p><em>italic</em></p>Is there an option to do this?
@xoofx commented on GitHub (Feb 2, 2018):
There are no options for this. Just trim
<p>and</p>after converting to HTML.Not sure it might be just a little option to add but more work involved to bring a clean support for this, so if trimming is acceptable, it is recommended.
@macaba commented on GitHub (Feb 5, 2018):
Thanks for the response, I'll trim manually.