Question about listing items #7072
-
it looks like if I have the following format
The generated html would show all of those into one line?
Only if I have a line break in between it would work? I wonder if there is a way to make it work without line break like markdown: some texts
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hello @xihajun, https://python-markdown.github.io/extensions/nl2br/ markdown_extensions:
- nl2br |
Beta Was this translation helpful? Give feedback.
Hello @xihajun,
you could add 2 empty spaces at the end of
some texts
or maybe try thenl2br
extension, but I never tried it, so perhaps it's not what you want or it might lead to bad side effects. Also the Python-Markdown syntax isn't fully compatible with the processor used in GitHub.https://python-markdown.github.io/extensions/nl2br/
https://github.com/Python-Markdown/markdown/blob/master/markdown/extensions/nl2br.py