본문으로 건너뛰기

My document title

Markdown Heading

Mardown text with links
Let's see how to Create a page.
Let's see how to Create a page.
Docusaurus logo

src/components/HelloDocusaurus.js
function HelloDocusaurus() {
return (
<h1>Hello, Docusaurus!</h1>
)
}
hello_world.c
int main(void)
{
printf("Hello World!");
return 0;
}
My tip

Use this awsome feature option

Take care

This actions 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}
</span>
);

This is Docusaurus green !

This is Facebook blue !