Files
docs/docs/my-doc.md
codex 7b699886e2
Some checks failed
Build Docusaurus Site / build (push) Failing after 1m3s
docs: fix broken create-a-page links for CI build
2026-03-11 12:39:25 +08:00

1.1 KiB

id, title, description, slug
id title description slug
my-doc-id My document title My document description /my-custom-url

Markdown heading

Markdown text with links

Let's see how to Create a page.

Let's see how to Create a page.

Images

Docusaurus logo

CodeBlocks

function HelloDocusaurus() {
    return (
        <h1>Hello, Docusaurus!</h1>
    )
}

Admonitions

:::tip My tip

Use this awesome feature option

:::

:::danger Take care

This action is dangerous

:::

MDX

export const Highlight = ({children, color}) => ( <span style={{ backgroundColor: color, borderRadius: '20px', color: '#fff', padding: '10px', cursor: 'pointer', }} onClick={() => { alert(You clicked the color ${color} with label ${children}) }}> {children} );

This is Docusaurus green !

This is Facebook blue !