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 guys.
Thank you for your time to develop this awesome library.
I'm recently figure out that the line break in markdown is not rendered correctly. Example:
<MarkdownPreview source={` Hello. World `} style={{ padding: 16 }} />
will render
Hello. World
instead of
Do you know how to fix it?
Thanks
The text was updated successfully, but these errors were encountered:
@thongdong7 In standard Markdown, there are a few ways to create line breaks:
Single line break: Add two spaces at the end of a line followed by Enter. This method is considered standard for creating a line break in Markdown.
This is the first line. This is the second line.
Paragraph break: Insert an empty line between paragraphs to create a break. This is also a standard way to separate paragraphs in Markdown.
This is the first paragraph. This is the second paragraph.
HTML tag: Use the <br> tag to create a line break. While not purely Markdown, this method is commonly used and supported.
<br>
This is the first line.<br> This is the second line.
These three methods can be used to create line breaks in Markdown, with the first two being standard Markdown practices.
Sorry, something went wrong.
No branches or pull requests
Hi guys.
Thank you for your time to develop this awesome library.
I'm recently figure out that the line break in markdown is not rendered correctly. Example:
will render
Hello. World
instead of
Do you know how to fix it?
Thanks
The text was updated successfully, but these errors were encountered: