My First Docusaurus Document
This is an example of using the custom BrowserWindow
component.
https://docusaurus.io
This is content inside the browser window.
console.log('Hello from Docusaurus!');
You can put any Markdown or JSX here.
Another section of your document.
Alternative installation commands
You can also initialize a new project using your preferred project manager:
npm init docusaurus
Assuming you chose the classic template and named your site my-website
, you will see the following files generated under a new directory my-website/
:
my-website
├── blog
│ ├── 2019-05-28-hola.md
│ ├── 2019-05-29-hello-world.md
│ └── 2020-05-30-welcome.md
├── docs
│ ├── doc1.md
│ ├── doc2.md
│ ├── doc3.md
│ └── mdx.md
├── src
│ ├── css
│ │ └── custom.css
│ └── pages
│ ├── styles.module.css
│ └── index.js
├── static
│ └── img
├── docusaurus.config.js
├── package.json
├── README.md
├── sidebars.js
└── yarn.lock
tip
Use new unreleased features of Docusaurus with the @canary
npm dist tag
npx create-expo-app@latest
Direct Component Usage​
You can also use the component directly with inline props:
my-terminal
developer@localhost:~/docs$
This is an example of using the custom BrowserWindow
component.
https://docusaurus.io
This is content inside the browser window.
console.log('Hello from Docusaurus!');
You can put any Markdown or JSX here.