マークダウンプレビュー
Heading 1
Heading 2
Heading 3
This is a paragraph with bold and italic text.
- List item 1
- List item 2
- List item 3
- Numbered item 1
- Numbered item 2
inline code
const hello = "world";
console.log(hello);
Blockquote text
| Column 1 | Column 2 |
|----------|----------|
| Cell 1 | Cell 2 |
ツールについて
Markdown プレビューワーは CommonMark / GFM をリアルタイムで HTML に変換します。README・ブログ・ドキュメントが公開前にどう見えるかを即確認でき、書き直しの往復を減らせます。
使い方
- Type or paste Markdown into the editor on the left.
- The preview pane on the right renders updates instantly.
- Use standard syntax: # headings, **bold**, `code`, ``` fenced blocks ```, [links](#).
- Click Copy HTML to grab the rendered output for use in CMS or email.
- Iterate until the layout looks right, then commit the Markdown source to your repo.
主な使用例
- Drafting a README before pushing to GitHub or GitLab.
- Previewing a blog post for a static site generator like Hugo or Astro.
- Composing a release note that will be pasted into GitHub Releases.
- Checking a Pull Request description renders correctly.
- Producing HTML email content from a Markdown source for a newsletter.
- Verifying a documentation page before opening a Docs PR.
よくある質問
Q. Does this support GitHub-flavored extensions like task lists?
A. Yes — checkboxes, fenced code blocks, autolinks, and tables work. Some platform-specific features (alerts, mermaid diagrams) may render differently on GitHub itself.
Q. Why does my code block lose syntax highlighting?
A. The previewer renders structure, not full syntax themes. GitHub, Gitea, and most static site generators apply their own highlighting on top.
Q. Can I render math (LaTeX)?
A. Not in the basic preview. Some Markdown processors integrate KaTeX or MathJax — check whether your target platform supports it before relying on it.
Q. Is anything sent to a server?
A. No. The Markdown is parsed and rendered entirely in your browser.