Markdownプレビュー
Markdownをリアルタイムでプレビュー表示。GFM(GitHub Flavored Markdown)・CommonMark準拠で、テーブル・コードブロック・チェックリスト等の拡張構文にも対応します
Markdown457 文字
プレビュー
Markdown Preview
This is a bold text and this is italic.
Features
- Real-time preview
- Supports bold and italic
- Code blocks with syntax highlighting
- Links and images
Code Example
function hello() {
console.log("Hello, world!");
}
Inline code is also supported.
This is a blockquote.
It can span multiple lines.
- First item
- Second item
- Third item
文法リファレンス— GitHub Flavored Markdown
| 要素 | 記法 | 結果 |
|---|---|---|
| 見出し | # H1 ## H2 ### H3 | H1 H2 H3 |
| 太字 | **text** | text |
| 斜体 | *text* | text |
| 太字+斜体 | ***text*** | text |
| リンク | [title](url) | title |
| 画像 |  | <img> |
| インラインコード | `code` | code |
| コードブロック | ```lang code ``` | code (シンタックス付き) |
| 引用 | > text | text |
| 順序なしリスト | - item1 - item2 |
|
| 順序付きリスト | 1. item1 2. item2 |
|
| 水平線 | --- | |
| 改行 | 行末でそのまま改行 | 改行として反映される |
| 取り消し線 | ~~text~~ |