-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
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
Numeric list does not add new lines for it's numbered parts. #5408
Comments
Is |
In all likelihood, this is CommonMark syntax, which we do not currently support (see #3018 for more details). Therefore, use the standardized Markdown syntax to define a list. |
MDX playground does not support it, and we don't support things that MDX does not support (apart a few exceptions like admonitions for which we extend mdx): https://mdxjs.com/playground/ |
let's see https://docusaurus.io/docs/markdown-features#standard-features
https://daringfireball.net/projects/markdown/syntax -> https://daringfireball.net/projects/markdown/syntax#list -> Ordered lists docs say, docusaurus supports numbered lists where am I wrong, @lex111 ? |
But the doc link you posted didn't say that |
My apologies, I misunderstood your answers at first and thought you said that numeric lists are not supported completely. Syntax with period works. Thank you for your patience. |
🐛 Bug Report
Prerequisites
npm run clear
oryarn clear
command.rm -rf node_modules yarn.lock package-lock.json
and re-installing packages.Description
Docusaurus promise to support markdown with numeric lists, but does not.
Expected behavior
Each position of numeric list starts from new line.
Actual behavior
Numeric list is inlined in one mash text passage.
Reproducible demo
Open example and go from main menu to "Numeric list bug"
https://stackblitz.com/edit/github-mznvzm?file=docs/numeric-list-bug.md
The text was updated successfully, but these errors were encountered: