Markdown Render Preview

Heading 1

Main content. Bold Italic Link Code

Image

Heading 2

Heading 3 with Custom Anchor Id

Heading 4

Heading 5
Heading 6

Task List

Emoji Transform

Emoji Text => :smile: :+1: :rocket: => 😄 👍 🚀

Emoji Unicode => 😄 👍 🚀

Table

Normal Table

Header 1Header 2
Cell 1Cell 2
Cell 3Cell 4

Align Table

Header 1Header 2Header 3
CenterCenterCenter
Cell 1Cell 2Cell 3

Plain URL text: https://example.com => https://example.com

Math

L=12ρv2SCLL = \frac{1}{2} \rho v^2 S C_L x˙=σ(y−x)y˙=ρx−y−xzz˙=−Îēz+xy\begin{aligned} \dot{x} & = \sigma(y-x) \\ \dot{y} & = \rho x - y - xz \\ \dot{z} & = -\beta z + xy \end{aligned}

GitHub Styled Alert

NOTE

Highlights information that users should take into account, even when skimming.

提įĪš

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)

Normal Code (with Highlight Lines)

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

With Focus

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>
  );
}
Show more Shiki cases

Highlight Lines

// Meta Mode:
+const a = 1;
-const b = 2;
// Comment Mode:
function App() {
  return <div>Hello World</div>; // [!code highlight]
}

Word Highlight

// Meta Mode:
function App() {
  return <div>Hello World</div>;
}
// Comment Mode:
// [!code word:World]
function App() {
  return <div>Hello World</div>;
}

Error Level

function App() {
  const a = 1; // [!code warning]
  return <div>Hello World</div>; // [!code error]
}

Limited HTML Tags Support

Click to expand! Content inside details
Avatar
Tomato TextLime TextSkyblue Text

Footnote

This is a footnote1.

Footnotes

  1. Footnote Content â†Đ