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
Adding multiple together is treated as a single newline.
example: <p>a</p><br><br><p>b</p><br>
<p>a</p><br><br><p>b</p><br>
is converted to below
a b
Any newline at the end is trimmed as well.
The text was updated successfully, but these errors were encountered:
Thanks for the report! That's behaviour is intentional.
Many pages with complex layouts end up having a lot of whitespace, and it makes the markdown very difficult to read at a glance and wastes size.
We tool the approach of cleaning it up. However, there is a config setting for maximum newlines that you can adjust to allow more.
Try setting maxConsecutiveNewlines
maxConsecutiveNewlines
Sorry, something went wrong.
No branches or pull requests
Adding multiple
together is treated as a single newline.
example:
<p>a</p><br><br><p>b</p><br>
is converted to below
Any newline at the end is trimmed as well.
The text was updated successfully, but these errors were encountered: