Markdown 記法の確認用。md ファイルを汎用的に使いまわせる様に、可能な限り GitHub Flavored Markdown に準拠したい。
const hello = null;- console.log("hoge")+ console.log("hello")console.log("normal")
function hello (){ console.log('hello')}
見出し heading
# 見出し h1
## 見出し h2
### 見出し h3
#### 見出し h4
リスト
- Hello!- Hola! - Bonjour! * Hi!
- Hello!
- Hola!
- Bonjour!
- Hi!
番号付きリスト
1. First2. Second
- First
- Second
テキストリンク
[アンカーテキスト](リンクのURL)
bare link
in MDX v2, bare link and link with <>
is completely deprecated to avoid <>
as jsx component.
https://ixanary.com
画像


画像にリンクを貼る
[](リンクのURL)
テーブル
Head | Head | Head |
---|---|---|
Text | Text | Text |
left | center | right |
引用
quote
quote
区切り線
インラインスタイル
italic
太字
打ち消し線
インラインでcode
を挿入する