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
The following markdown input
- [ ] foo - bar - [ ] baz
is rendered with line breaks (by defaultHtmlRenderer), as can be seen in the following image:
defaultHtmlRenderer
In Github / Gitea, this would be rendered as:
foo
bar
baz
This is due to list items with Loose ListSpacing being wrapped in a paragraph.
Loose
ListSpacing
Possible solutions:
<input type="checkbox">
<p>
position: absolute
<input>
The text was updated successfully, but these errors were encountered:
Seems like your idea of wrapping in the <p> tags is the standard for most parsers as well:
https://babelmark.github.io/?text=-+%5B+%5D+foo%0A%0A-+bar%0A%0A-+%5B+%5D+baz
I don't have bandwidth to take this on, but I would be glad to review a PR for this if anybody would like to tackle this issue.
Thanks for reporting this!
Sorry, something went wrong.
No branches or pull requests
The following markdown input
is rendered with line breaks (by
defaultHtmlRenderer
), as can be seen in the following image:In Github / Gitea, this would be rendered as:
foo
bar
baz
This is due to list items with
Loose
ListSpacing
being wrapped in a paragraph.Possible solutions:
<input type="checkbox">
inside the<p>
(this is what Github does, and seems to be the obvious solution to me)position: absolute
and other styling foo to<input>
(this is what Gitea does)The text was updated successfully, but these errors were encountered: