AI Learning GymAI Learning Gym

Free writing and development tools

← Back to Dashboard

Markdown Editor with Live Preview

Markdown
Preview

Markdown Syntax Guide

Markdown is a simple way to add formatting to plain text. Here are the most common elements:

ElementSyntaxResult
Heading 1# My HeadingLarge title
Heading 2## Section TitleMedium heading
Bold**bold text**bold text
Italic*italic text*italic text
Bullet list- Item oneBulleted list item
Numbered list1. First item1. First item
Link[text](https://example.com)Clickable link
Inline code`code here`Monospace inline code
Code block```
code
```
Indented code block
Blockquote> quoted textIndented quote
Horizontal rule---Dividing line

Where is Markdown used?

Markdown is everywhere in modern writing and development. GitHub README files are written in Markdown. Most blogging platforms (Ghost, Jekyll, Hugo) accept Markdown natively. Chat apps like Slack and Discord support basic Markdown for formatting messages. Many note-taking apps — Obsidian, Notion, Bear — use Markdown for rich text without requiring a word processor.

Frequently asked questions

Is my text saved if I close the tab?

Your text is not automatically saved — if you close the tab, you'll lose unsaved work. Use the Copy MD button to copy your Markdown and paste it into a text editor or file before closing.

Can I export this as an HTML file?

Click Copy HTML to copy the rendered HTML to your clipboard. You can then paste it into any HTML file or CMS. For a full HTML document, you'll need to wrap it in a basic HTML template.

Why doesn't my Markdown render in some apps?

Different apps support different flavors of Markdown. The basic syntax (headers, bold, lists, links) works almost everywhere. Advanced features like tables, footnotes, or custom HTML may not render in all apps.

Is Markdown the same as HTML?

No — Markdown is a simpler shorthand that gets converted into HTML. Instead of writing <strong>bold</strong>, you write **bold**. Markdown is designed to be readable as plain text while still rendering nicely as HTML.