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
When I convert html to markdown, I see that an extra newline is added.
For the following code:
const html = `<p>Hello</p><p>1</p><p>2</p><p>3</p>` const result = NodeHtmlMarkdown.translate(html) console.log(result)
I get this output:
Hello 1 2 3
The output essentially is Hello\n\n1\n\n2\n\n3. Is there a way to work around this?
Hello\n\n1\n\n2\n\n3
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I convert html to markdown, I see that an extra newline is added.
For the following code:
I get this output:
The output essentially is
Hello\n\n1\n\n2\n\n3
.Is there a way to work around this?
The text was updated successfully, but these errors were encountered: