Main content. Bold Italic Link Code
- Task 1
- Task 2
- Task 3
Emoji Text => :smile: :+1: :rocket: => 😄 👍 🚀
Emoji Unicode => 😄 👍 🚀
| Header 1 | Header 2 |
|---|---|
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
| Header 1 | Header 2 | Header 3 |
|---|---|---|
| Center | Center | Center |
| Cell 1 | Cell 2 | Cell 3 |
Plain URL text: https://example.com => https://example.com
Note
Highlights information that users should take into account, even when skimming.
[!TIP/提示] Optional information to help a user be more successful.
With Custom Title
Important
Crucial information necessary for users to succeed.
Warning
Critical content demanding immediate user attention due to potential risks.
Caution
Negative potential consequences of an action.
Code Block (Powered by Shiki)
import { useState } from 'react';
export function App() {
const [count, setCount] = useState(0);
return (
<div>
<p>You clicked {count} times</p>
<button onClick={() => setCount(count + 1)}>Click me</button>
</div>
);
}import { useState } from 'react';
export function App() {
const [count, setCount] = useState(0); // [!code focus]
return (
<div>
<p>You clicked {count} times</p>
<button onClick={() => setCount(count + 1)}>Click me</button>
</div>
);
}+const a = 1;
-const b = 2;Click to expand!
Content inside details
Tomato TextLime TextSkyblue Text
This is a footnote1.
Footnotes
-
Footnote Content ↩