1.1 KiB
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
Links
Markdown text with links
Let's see how to Create a page.
Let's see how to Create a page.
Images
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 !
