3 min read
Getting Started with Markdown
Learn markdown from scratch: headings, lists, links, code, and more. Write plain text that turns into clean formatted documents and HTML.
What Markdown Is and Why It Caught On
Markdown is a lightweight way to add formatting to plain text using simple symbols instead of buttons or menus. You write a hash for a heading or asterisks for emphasis, and a converter turns those marks into properly formatted output. Because the source stays readable even before conversion, it is comfortable to write and easy to review.
It caught on because it is fast, portable, and everywhere. GitHub, Reddit, Discord, note apps, and static websites all understand markdown, so the same skill transfers across tools. Files are plain text, meaning they open anywhere, survive for decades, and play nicely with version control.
The Core Syntax
Headings use one to six hash symbols, where more hashes mean a smaller heading. Wrap text in single asterisks for italic and double asterisks for bold. Start a line with a dash for a bullet list or a number and period for a numbered list, and indent to create nested items.
Links follow the pattern of square brackets around the visible text followed by parentheses around the address. Images use the same pattern with an exclamation mark in front. For code, wrap a short snippet in single backticks, or fence a whole block between triple backticks to keep formatting and enable syntax highlighting.
Using the Markdown Editor
The editor runs entirely in your browser with a live preview beside your text, so you see the formatted result as you type. Your work is autosaved locally on your device rather than uploaded, and you can export the finished document as HTML when you are done.
- 1Open the Markdown Editor and start typing in the left pane.
- 2Add a heading by beginning a line with a hash and a space.
- 3Use asterisks for bold or italic and dashes for bullet lists as you write.
- 4Watch the live preview on the right update to confirm your formatting.
- 5When finished, use the export option to save your document as HTML, knowing your draft was autosaved locally the whole time.
Handy Extras Worth Knowing
Many markdown tools support a few extensions beyond the basics. Blockquotes start a line with a greater-than sign, horizontal rules come from three dashes on their own line, and tables use pipes and dashes to define columns and a header row. Task lists add checkboxes with brackets, which is handy for to-do notes.
These extras are common but not universal, so if you are writing for a specific platform, check which features it supports. The plain-text core, headings, emphasis, lists, links, and code, works virtually everywhere, so lean on it when portability matters most.
Where Markdown Fits Your Workflow
Markdown shines for notes, documentation, README files, blog drafts, and any writing you want to keep clean and future-proof. Because it separates content from styling, you focus on the words and let the converter handle presentation, which keeps long documents consistent.
When you need a formatted result for the web, exporting to HTML gives you ready-to-publish markup. When you just need a durable note, the plain-text file itself is the deliverable. That flexibility is why writers, developers, and students all keep markdown in their toolkit.
Frequently asked questions
Do I need to memorize markdown to use it?
No. A handful of marks, hashes for headings, asterisks for emphasis, and dashes for lists, cover most writing. A live-preview editor lets you learn the rest by watching your formatting appear as you type.
Is my writing uploaded when I use the editor?
No. The markdown editor runs in your browser and autosaves your draft locally on your device. Nothing is sent to a server, and you control when to export the finished file.
What can I do with the exported file?
Exporting to HTML gives you markup ready to publish on a website or paste into a content system. You can also keep the plain-text markdown itself as a portable, long-lasting note.
Tools mentioned in this guide
Markdown Editor
Write markdown with a live preview — autosaved locally, HTML export included.
Text Tools
Online Notepad
A distraction-free notepad that autosaves to your browser as you type.
Productivity Tools
Word Counter
Count words, characters, sentences, and reading time as you type.
Text Tools
Encrypted Notes
A private note locked with AES-256 — passphrase-encrypted in your browser.
Productivity Tools
CSV to JSON Converter
Convert CSV to JSON and JSON back to CSV — quotes and commas handled properly.
Developer Tools
Keep reading