xutil.dev
ログイン

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.

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

Visit xutil.dev

文法リファレンスGitHub Flavored Markdown

要素記法結果
見出し# H1 ## H2 ### H3H1 H2 H3
太字**text**text
斜体*text*text
太字+斜体***text***text
リンク[title](url)title
画像![alt](url)<img>
インラインコード`code`code
コードブロック```lang code ```code (シンタックス付き)
引用> text
text
順序なしリスト- item1 - item2
  • item1
  • item2
順序付きリスト1. item1 2. item2
  1. item1
  2. item2
水平線---
改行行末でそのまま改行改行として反映される
取り消し線~~text~~text