mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-03 03:12:35 +02:00
* feat: add getting started doc at classic inital templates * fix: improve the contents of getting started page * fix: fix slug routing * fix: rename gettingStarted to getting-started and re-adjust the content * feat: add markdown-features docs * feat: add a page on how to create a simple document * feat: add a page on how to create pages * feat: add create a post doc * feat: add thank you page with whats next * fix: reduce the content of the init templates * update the init template Co-authored-by: Lisa Chandra <52909743+lisa761@users.noreply.github.com> Co-authored-by: Javid <singularity.javid@gmail.com> Co-authored-by: slorber <lorber.sebastien@gmail.com>
16 lines
295 B
JavaScript
16 lines
295 B
JavaScript
module.exports = {
|
|
docs: [
|
|
{
|
|
type: 'category',
|
|
label: 'Docusaurus Tutorial',
|
|
items: [
|
|
'getting-started',
|
|
'create-a-page',
|
|
'create-a-document',
|
|
'create-a-blog-post',
|
|
'markdown-features',
|
|
'thank-you',
|
|
],
|
|
},
|
|
],
|
|
};
|