Skip to main content

Hello from Seeed Studio

Headers

tip

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

note

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

Custom ID headers

caution

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

danger

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

1X11X21X32X22X3
20x20mm20x40mm20x60mm40x40mm40x60mm

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)

More Info

code

Support language

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>;
}

Loading Comments...