We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
The blow code
let doc = "*Italic* **bold** normal" echo markdown(doc, root = Paragraph()) echo markdown(doc, root = Inline())
gives the following output
<p><em>Italic</em> <strong>bold</strong> normal</p> <em>Italic</em> <strong>bold</strong> n o r m a l
I need the first (Paragraph) output, but without the <p> tag and with the normal word as a single line as shown below
Paragraph
<p>
normal
<em>Italic</em> <strong>bold</strong> normal
How the above output can be achieved?
Thank you, Vlad
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
The blow code
gives the following output
I need the first (
Paragraph
) output, but without the<p>
tag and with thenormal
word as a single line as shown belowHow the above output can be achieved?
Thank you,
Vlad
The text was updated successfully, but these errors were encountered: