Skip to main content

Markdown Example

This page is a markdown example of docusaurus.

Youtube

<iframe width="560" height="315" src="https://www.youtube.com/embed/M7lc1UVf-VE" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>

Codepen

<p data-height="265" data-theme-id="0" data-slug-hash="dJgNLK" data-default-tab="js,result" data-user="tomoasleep" data-embed-version="2" data-pen-title="dJgNLK" class="codepen">See the Pen <a href="https://codepen.io/tomoasleep/pen/dJgNLK/">dJgNLK</a> by Tomoya Chiba (<a href="https://codepen.io/tomoasleep">@tomoasleep</a>) on <a href="https://codepen.io">CodePen</a>.</p>
<script async src="https://production-assets.codepen.io/assets/embed/ei.js"></script>

See the Pen dJgNLK by Tomoya Chiba (@tomoasleep) on CodePen.

Table

| Left align | Right align | Center align |
|:-----------|------------:|:------------:|
| This | This | This |
| column | column | column |
| will | will | will |
| be | be | be |
| left | right | center |
| aligned | aligned | aligned |
Left alignRight alignCenter align
ThisThisThis
columncolumncolumn
willwillwill
bebebe
leftrightcenter
alignedalignedaligned

Code Block - JSX

you need to add title on ```jsx title="/src/components/HelloCodeTitle.js"

function HelloCodeTitle(props) {
return <h1>Hello, {props.name}</h1>;
}
/src/components/HelloCodeTitle.js
function HelloCodeTitle(props) {
return <h1>Hello, {props.name}</h1>;
}

Live Editor

Live Editor
Result
Loading...

Admonitions

note

:::note
Some **content** with _markdown_ `syntax`. Check [this `api`](#).
:::
note

Some content with markdown syntax. Check this api.

tip

:::tip
Some **content** with _markdown_ `syntax`. Check [this `api`](#).
:::
tip

Some content with markdown syntax. Check this api.

info

:::info
Some **content** with _markdown_ `syntax`. Check [this `api`](#).
:::
info

Some content with markdown syntax. Check this api.

caution

:::caution
Some **content** with _markdown_ `syntax`. Check [this `api`](#).
:::
caution

Some content with markdown syntax. Check this api.

danger

:::danger
Some **content** with _markdown_ `syntax`. Check [this `api`](#).
:::
danger

Some content with markdown syntax. Check this api.