ToolfyToolfy
FormattersMarkdown Preview

Markdown Preview

Live Markdown editor and preview with split-pane, source-only, and preview-only views. Supports GitHub Flavored Markdown (GFM) including tables, code blocks with syntax highlighting, task lists, and blockquotes. Renders Mermaid diagrams (flowcharts, sequence diagrams, etc.) inline. Copy the source Markdown or the rendered HTML with one click.

Hello, Markdown!

Features

  • Bold text
  • Italic text
  • Inline code

Code Block

const hello = "world";
console.log(hello);

Table

Name Age
Alice 30
Bob 25

Blockquote example

Link example

Mermaid Diagram

graph LR
  A["Start"] --> B["Process"]
  B --> C["End"]