This repo runs docs.reown.com.
Source can be viewed in docs
directory.
pnpm install
pnpm start
- Open
http://localhost:3000/
- Create a new file in
docs/
- Configure
sidebars.js
to create the sidebar link.
- Open the file in
docs/
Older versions are available in versioned_docs/
.
Whenever a route is changed DocSearch needs to crawl the website in order to keep the search engine working properly, this is scheduled once a week, it is therefore recommended to use redirects to avoid broken links. See link.
- Open
docusaurus.config.js
Important
While creating titles inside a tab it is recommended to use four number signs (#) to avoid overpopulating the table of content.
In your mdx file first import PlatformTabs
and PlatformTabItem
from docs/components/PlatformTabs
and docs/components/PlatformTabItem
relatively and wrap your content around them
You can find the supported platform in docs/components/PlatformTabs.js
, they are grouped in an array called PLATFORM_MAP
import PlatformTabs from '../components/PlatformTabs'
import PlatformTabItem from '../components/PlatformTabItem'
<PlatformTabs
groupId="anyId"
activeOptions={["web","ios","android"]}
>
<PlatformTabItem value="web">
#### Heading here
Information related to web
</PlatformTabItem>
<PlatformTabItem value="ios">
#### Heading here
Information related to ios
</PlatformTabItem>
<PlatformTabItem value="android">
#### Heading here
Information related to android
</PlatformTabItem>
</PlatformTabs>
In your mdx file first import Tabs and TabItem and wrap your content around them
import Tabs from '@theme/Tabs'
import TabItem from '@theme/TabItem'
<Tabs>
<TabItem value="custom-a" label="Custom A">
#### Heading here
Here you can add all the information related to Custom A
</TabItem>
<TabItem value="custom-b" label="Custom B">
#### Heading here
Here you can add all the information related to Custom B
</TabItem>
</Tabs>
For more options, check the Docusaurus docs.
Archived v1.0 docs can be viewed in the v1.0 branch.