MDX cheatsheet

MDX cheatsheet

Escape angle bracket

Add backtick to escape angle brackets: 
`<title>abc</title>`

Collapsible

<details>
    <summary>Click me</summary>
    
    ### Heading
    1. Expand by defaut set: details open
    2. Bar
        * Baz
        * Qux

    ### Some Javascript
    ```js
    function logSomething(something) {
        console.log('Something', something);
    }
    ```
</details>
Click me

Heading

  1. Expand by defaut set: details open
  2. Bar
    • Baz
    • Qux

Some Javascript

function logSomething(something) {
    console.log('Something', something);
}

Blockquote

<blockquote> is not part of the original Markdown syntax.

<blockquote>
This is a blockquote.
</blockquote>