error

Overridon のマークダウン記法一覧

見出し

# Heading level 1
## Heading level 2
### Heading level 3
#### Heading level 4

強調

**Bold**
*Italic*
~~Strikethrough~~

Bold
Italic
Strikethrough

引用

> Blockquotes

Blockquotes

リスト

順序付きリスト

1. First item
2. Second item
3. Third item
  1. First item
  2. Second item
  3. Third item

順序なしリスト

- First item
- Second item
- Third item
  • First item
  • Second item
  • Third item

- の代わりに *+ を使用する事もできます。

コード

コードブロック

```言語:ファイル名
```

index.ts
const greet = () => {
  console.log('こんにちわ')
}

インラインコード

`Inline Code`

Inline Code

リンク

タイトル無し

[Duck Duck Go](https://duckduckgo.com)

Duck Duck Go

タイトル有り

[Duck Duck Go](https://duckduckgo.com "The best search engine for privacy")

Duck Duck Go

画像

![alt](https://overridon.com/images/cat.jpeg)

alt

サイズ指定

![alt](https://overridon.com/images/cat.jpeg#200x200)

alt

テーブル

| Syntax      | Description |
| ----------- | ----------- |
| Header      | Title       |
| Paragraph   | Text        |
SyntaxDescription
HeaderTitle
ParagraphText

数式

ブロック

$$
a^2 + b^2 = c^2
$$
a2+b2=c2a^2 + b^2 = c^2

インライン

$a^2 + b^2 = c^2$

a2+b2=c2a^2 + b^2 = c^2

区切り線

---

脚注

This is the first footnote[^1]
[^1]:This is the first footnote

This is the first footnote1

埋め込み

リンクカード

URL だけが貼られた行をリンクカードとして表示します。

https://www.instagram.com/p/CmUv48DLvxd/

Tweet

ツイートの URL だけが貼られた行を埋め込みとして表示します。

https://twitter.com/elonmusk/status/1585341984679469056

Youtube

Youtube の URL だけが貼られた行を埋め込みとして表示します。

https://www.youtube.com/watch?v=0e3GPea1Tyg

CodePen

CodePen の URL だけが貼られた行を埋め込みとして表示します。

https://codepen.io/hoge/pen/hoge

CodeSandBox

CodeSnadBox の URL だけが貼られた行を埋め込みとして表示します。

https://codesandbox.io/s/hoge

SlideShare

SlideShare の埋め込み iframe の src だけが貼られた行を埋め込みとして表示します。

https://www.slideshare.net/slideshow/embed_code/key/hoge

SpeakerDeck

SpeakerDeck の埋め込み iframe の src だけが貼られた行を埋め込みとして表示します。

https://speakerdeck.com/player/hoge

Figma

Figma の URL だけが貼られた行を埋め込みとして表示します。

https://www.figma.com/file/hoge/hoge

独自記法

インフォメーション

:::info
追加の情報など。
:::
追加の情報など。

注意

:::caution
〇〇した方が良いです。
:::
〇〇した方が良いです。

警告

:::warning
〇〇しないでください。
:::
〇〇しないでください。

脚注

  1. This is the first footnote