Back to Tools

Markdown Preview

Write Markdown on the left and see a live rendered preview on the right. Supports GFM tables, task lists, syntax highlighting, and 3 themes.

130 words|1 min read|1,152 chars
Markdown
Preview

Contents

Hello, Markdown!

This is a bold word and this is italic. Here is strikethrough text.

Features

  • Headings (#, ##, ###)
  • Bold and italic text
  • Strikethrough with double tildes
  • inline code
  • Links
  • Horizontal rules

Checklist

  • Syntax highlighting
  • Tables support
  • Export to PDF (coming soon)
  • Word count stats

Code Block

js
"hl-keyword">function hello() {
  "hl-keyword">const msg = "world";
  "hl-keyword">return msg; // returns a greeting
}
python
"hl-keyword">def fibonacci(n):
    # Generate Fibonacci sequence
    seq = [0, 1]
    "hl-keyword">for i "hl-keyword">in range(2, n):
        seq.append(seq[i-1] + seq[i-2])
    "hl-keyword">return seq
json
{
  "name": "InfoNexus",
  "version": "2.0.0",
  "active": true,
  "score": 98
}
This is a blockquote. It can span multiple lines
and will be rendered as a block element.

Table Example

FeatureStatusNotes
Tables✅ DoneGFM style
Checklist✅ Done- [x] / - [ ]
Strikethrough✅ Done~~ syntax
TOC✅ DoneAuto-generated
  1. Ordered item one
  2. Ordered item two
  3. Ordered item three

All processing happens in your browser. No data is sent to any server.