diff --git a/docs/en/next/site-preparation.html b/docs/en/next/site-preparation.html index e81e85de0f..2a67b478ae 100644 --- a/docs/en/next/site-preparation.html +++ b/docs/en/next/site-preparation.html @@ -80,14 +80,14 @@
As shown after you installed Docusaurus, the initialization script created a directory structure similar to:
root-directory
-├── docs-examples-from-docusaurus
+├── docs
│ ├── doc1.md
│ ├── doc2.md
│ ├── doc3.md
│ ├── exampledoc4.md
│ └── exampledoc5.md
└── website
- ├── blog-examples-from-docusaurus
+ ├── blog
│ ├── 2016-03-11-blog-post.md
│ ├── 2017-04-10-blog-post-two.md
│ ├── 2017-09-25-testing-rss.md
@@ -101,14 +101,11 @@
├── siteConfig.js
└── static
--You may have already renamed the example blog (
-website/blog-examples-from-docusaurus
towebsite/blog
) and document (docs-examples-from-docusaurus
todocs
) directories when you verified the installation.
docs-examples-from-docusaurus
directory
+docs
directory
contains example documentation files written in Markdown.website/blog-examples-from-docusaurus
directory contains examples of blog posts written in markdown.website/blog
directory contains examples of blog posts written in markdown.website/pages
directory contains example top-level pages for the site.website/static
directory contains static assets used by the example site.You will need to keep the website/siteConfig.js
and website/core/Footer.js
files, but may edit them as you wish. The value of the customDocsPath
key in website/siteConfig.js
can be modified if you wish to use a different directory name or path. The website
directory can also be renamed to anything you want it to be.
However, you should keep the website/pages
and website/static
directories. You may change the content inside them as you wish. At the bare minimum you should have an en/index.js
or en/index.html
file inside website/pages
and an image to use as your header icon inside website/static
.