diff --git a/docs/en/next/tutorial-create-pages.html b/docs/en/next/tutorial-create-pages.html index b4d6b40524..e58d7038ed 100644 --- a/docs/en/next/tutorial-create-pages.html +++ b/docs/en/next/tutorial-create-pages.html @@ -120,12 +120,12 @@
docs
folder called doc4.md
. The docs
folder is in the root of your Docusaurus project, one level above website
.docs
folder called doc9.md
. The docs
folder is in the root of your Docusaurus project, one level above website
.---
-id: doc4
-title: This is Doc 4
+id: doc9
+title: This is Doc 9
---
I can write content using [GitHub-flavored Markdown syntax](https://github.github.com/gfm/).
@@ -142,13 +142,13 @@ I can write content using [GitHub-flavored Markdown sy
* Let's Go
sidebars.json
is where you specify the order of your documentation pages, so open website/sidebars.json
and add "doc4"
after "doc1"
. This ID should be the same one as in the metadata for the Markdown file above, so if you gave a different ID in Step 2, just make sure to use the same ID in the sidebar file.sidebars.json
is where you specify the order of your documentation pages, so open website/sidebars.json
and add "doc9"
after "doc1"
. This ID should be the same one as in the metadata for the Markdown file above, so if you gave a different ID in Step 2, just make sure to use the same ID in the sidebar file.{
"docs": {
"Docusaurus": [
"doc1",
-+ "doc4"
++ "doc9"
],
"First Category": ["doc2"],
"Second Category": ["doc3"]
@@ -159,12 +159,12 @@ I can write content using [GitHub-flavored Markdown sy
}
npm run start
.npm start
or yarn start
.You've created your first documentation page on Docusaurus!
Learn more about creating docs pages here.
-