-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Markdown recognizes list tags only when immediatly preceeded by header tag #7248
New issue
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
Comments
Thank you for the trying the ordered and unordered list. marking this issue as closed now. Please feel free to reopen if any other issue exists. |
Rajakavitah, the problem also exists if I only have an unordered list like
this:
Below a markdown list should be created:
* point 1
* point 2
Markdown returns this where no html list tags are created:
<p>Below a markdown list should be created:
* point 1
* point 2</p>
When I add a header tag immediately before the list tag like here:
## Below a markdown list should be created:
* point 1
* point 2
Markdown correctly returns this:
<h2>Below a markdown list should be created:</h2>
<ul>
<li>point 1</li>
<li>point 2</li>
</ul>
Thanks and kind regards
Martin Klein
Am Mo., 21. Apr. 2025 um 16:10 Uhr schrieb Rajakavitha Kodhandapani <
***@***.***>:
… Thank you for the trying the ordered and unordered list.
If you would like to have a mix of both ordered and unordered list you may
have to nest it.
For more details please see:
https://www.markdownguide.org/basic-syntax/#unordered-lists
marking this issue as closed now. Please feel free to reopen if any other
issue exists.
—
Reply to this email directly, view it on GitHub
<#7248 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AATHN4GDODWZHYSNBPWBWVT22T35XAVCNFSM6AAAAAB3Q2YO3GVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDQMJYGQ4DMMZSGY>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
*Rajakavitha1* left a comment (linode/docs#7248)
<#7248 (comment)>
Thank you for the trying the ordered and unordered list.
If you would like to have a mix of both ordered and unordered list you may
have to nest it.
For more details please see:
https://www.markdownguide.org/basic-syntax/#unordered-lists
marking this issue as closed now. Please feel free to reopen if any other
issue exists.
—
Reply to this email directly, view it on GitHub
<#7248 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AATHN4GDODWZHYSNBPWBWVT22T35XAVCNFSM6AAAAAB3Q2YO3GVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDQMJYGQ4DMMZSGY>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Link: https://www.linode.com/docs/guides/how-to-use-python-markdown-to-convert-markdown-to-html/
When I load this into markup:
markdown returns this:
So it does not created the html list tags.
But when I load this into markdown:
it correctly creates the html list tags:
Many thanks for your help.
Regards Martin Klein
The text was updated successfully, but these errors were encountered: