Markdown ツール
ブラウザで Markdown を編集、プレビュー、変換。アップロード不要。
Markdown ツール
-
Markdown to HTML
MarkdownテキストをクリーンなHTMLに即変換。貼り付けてコピーするだけ。
ツールを開く →
-
HTML to Markdown
HTMLソースをMarkdownに変換。見出し・リンク・リストを保持してきれいに出力。
ツールを開く →
-
Markdownプレビュー
ブラウザ上でMarkdownとレンダリングHTMLをリアルタイムで並べて確認できます。
ツールを開く →
-
Markdownテーブル作成ツール
行・列を入力してMarkdownテーブルをビジュアルに作成し、結果をコピー。
ツールを開く →
-
目次ジェネレーター
Markdownの見出しを抽出して、リンク付きの目次を自動生成します。
ツールを開く →
-
Markdownリンクチェッカー
MarkdownからすべてのリンクをURLを抽出し、各リンクの到達可否を確認します。
ツールを開く →
-
見出し抽出ツール
Markdownドキュメントからすべての見出しレベルを抽出してアウトラインを表示。
ツールを開く →
-
Markdown除去ツール
Markdownの書式をすべて取り除き、クリーンなプレーンテキストを出力します。
ツールを開く →
-
画像リンク抽出ツール
Markdownからすべての画像参照を抽出し、alt属性とソースURLを一覧表示。
ツールを開く →
-
Markdownワードカウント
Markdownドキュメントの単語数・文字数・読了時間を計測。マークアップは除外。
ツールを開く →
Why browser-only Markdown tools?
Markdown is a plain-text format used in README files, documentation, blog posts, and notes. Many online Markdown processors send your text to a remote server for rendering or conversion. That is unnecessary — modern browsers can parse and transform Markdown entirely in JavaScript without a round trip to any server. The tools on this page keep your text private and work instantly, even offline after the page has loaded.
Browser-based Markdown tools are also useful for developers who want to check their README output, writers who draft in Markdown and need a word count, and teams who need to audit links or extract a document outline before publishing.
Choosing the right tool
To see how your Markdown looks when rendered, use the Markdown Preview. To convert Markdown to HTML for embedding in a web page, use Markdown to HTML. To convert existing HTML back to Markdown, use HTML to Markdown. To build a Markdown table without memorising the syntax, use the Table Generator. To generate a clickable table of contents for a long document, use the TOC Generator. To audit all URLs in a document before publishing, use the Link Checker.
よくある質問
- Do my Markdown files get uploaded to a server?
- No. Every Markdown tool on this page runs entirely in your browser using JavaScript. Your text and files never leave your device — not even temporarily.
- Which Markdown flavour do the tools support?
- The tools target CommonMark-compatible Markdown: headings, bold, italic, strikethrough, inline code, fenced code blocks, links, images, ordered and unordered lists, blockquotes, and horizontal rules. GitHub-Flavored Markdown (GFM) tables are supported in the Table Generator.
- Can I use these tools to prepare README files?
- Yes. The Markdown Preview and TOC Generator are particularly useful for README files. Paste your README, verify the rendered output, then generate a table of contents to paste at the top.
- How accurate is the HTML-to-Markdown conversion?
- The HTML to Markdown converter handles the most common structural elements: headings (h1–h6), paragraphs, bold, italic, strikethrough, inline code, code blocks, links, images, ordered and unordered lists, blockquotes, and line breaks. Complex tables and deeply nested structures may need manual cleanup.
- Does the link checker actually fetch URLs?
- Yes. The Markdown Link Checker uses the browser's Fetch API to send a HEAD request to each extracted URL. Requests that return a 2xx or 3xx response are marked as reachable. CORS restrictions may prevent some external URLs from being verified — those are flagged separately.
- How does the word count exclude Markdown syntax?
- The Markdown Word Count tool strips all formatting — headings markers, bold/italic asterisks, code fences, link syntax, image syntax, and blockquote markers — before counting words. This gives you the true prose word count of your document, not the word count including markup characters.
- Can I copy the output to the clipboard?
- Yes. Every tool includes a Copy button that writes the output to your clipboard using the Clipboard API, which is supported on all modern browsers including mobile.
- Do these tools work offline?
- Yes for most tools. All computation runs locally once the page has loaded. The Link Checker requires an internet connection to fetch URLs, but the extraction step works offline.