diff --git a/packages/docusaurus-init/templates/bootstrap/docs/doc1.md b/packages/docusaurus-init/templates/bootstrap/docs/doc1.md index af57d2d78d..e886a419dd 100644 --- a/packages/docusaurus-init/templates/bootstrap/docs/doc1.md +++ b/packages/docusaurus-init/templates/bootstrap/docs/doc1.md @@ -49,18 +49,14 @@ Strikethrough uses two tildes. ~~Scratch this.~~ 1. Ordered sub-list 1. And another item. - You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown). - - To have a line break without a paragraph, you will need to use two trailing spaces. Note that this line is separate, but within the same paragraph. (This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.) - * Unordered list can use asterisks - -* Or minuses +- Or minuses -- Or pluses + ++ Or pluses --- @@ -109,7 +105,7 @@ alert(s); ```python s = "Python syntax highlighting" -print s +print(s) ``` ``` diff --git a/packages/docusaurus-init/templates/classic/docs/doc1.md b/packages/docusaurus-init/templates/classic/docs/doc1.md index af57d2d78d..e886a419dd 100644 --- a/packages/docusaurus-init/templates/classic/docs/doc1.md +++ b/packages/docusaurus-init/templates/classic/docs/doc1.md @@ -49,18 +49,14 @@ Strikethrough uses two tildes. ~~Scratch this.~~ 1. Ordered sub-list 1. And another item. - You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown). - - To have a line break without a paragraph, you will need to use two trailing spaces. Note that this line is separate, but within the same paragraph. (This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.) - * Unordered list can use asterisks - -* Or minuses +- Or minuses -- Or pluses + ++ Or pluses --- @@ -109,7 +105,7 @@ alert(s); ```python s = "Python syntax highlighting" -print s +print(s) ``` ``` diff --git a/packages/docusaurus-init/templates/facebook/docs/doc1.md b/packages/docusaurus-init/templates/facebook/docs/doc1.md index af57d2d78d..e886a419dd 100644 --- a/packages/docusaurus-init/templates/facebook/docs/doc1.md +++ b/packages/docusaurus-init/templates/facebook/docs/doc1.md @@ -49,18 +49,14 @@ Strikethrough uses two tildes. ~~Scratch this.~~ 1. Ordered sub-list 1. And another item. - You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown). - - To have a line break without a paragraph, you will need to use two trailing spaces. Note that this line is separate, but within the same paragraph. (This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.) - * Unordered list can use asterisks - -* Or minuses +- Or minuses -- Or pluses + ++ Or pluses --- @@ -109,7 +105,7 @@ alert(s); ```python s = "Python syntax highlighting" -print s +print(s) ``` ```