Hello from Seeed Studio
Headers
提示
will show up on the table of contents on the upper right
So that your users will know what this page is all about without scrolling down or even without reading too much.
Only h2 and h3 will be in the TOC by default
备注
You can configure the TOC heading levels either per-document or in the theme configuration.
The headers are well-spaced so that the hierarchy is clear.
- lists will help you
- present the key points
- that you want your users to remember
- and you may nest them
- multiple times
- and you may nest them
Custom ID headers
警告
With {#custom-id}
syntax you can set your own header ID.
Struct
website # Root directory of your site
└── docs
├── greeting.md
└── guide
└── hello.md
Force change url
危险
By default hello.md will be available at /docs/guide/hello. You can change its URL location to /docs/bonjour:
---
slug: /bonjour
---
Center align content
1X1 | 1X2 | 1X3 | 2X2 | 2X3 |
---|---|---|---|---|
20x20mm | 20x40mm | 20x60mm | 40x40mm | 40x60mm |
links between documents and tags
Eg. In reTerminal.md need to link to #q13-how-to-check-if-the-encryption-chip-is-atecc608a-sshda-b-or-atecc608a-tngtlss-g tag in reTerminal-FAQ.md
[More Info](Edge/reTerminal/reTerminal-FAQ#q13-how-to-check-if-the-encryption-chip-is-atecc608a-sshda-b-or-atecc608a-tngtlss-g)
code
demo.js
function HelloCodeTitle(props) {
return <h1>Hello, {props.name}</h1>;
}
```jsx title="/src/components/HelloCodeTitle.js"
function HelloCodeTitle(props) {
return <h1>Hello, {props.name}</h1>;
}