Everyday formatting
These patterns cover most notes, README files, documentation drafts, and content outlines.
- `# Heading` creates a heading.
- `**bold**` adds strong emphasis.
- `- item` creates a bullet list.
Reference page
Use this cheat sheet when you remember what you want to format but not the exact Markdown characters.
Quick answer
Markdown uses plain text characters for formatting: `#` for headings, `**` for bold, `*` for italic, brackets for links, backticks for code, and pipes for tables.
Reference
markdown cheat sheet
These patterns cover most notes, README files, documentation drafts, and content outlines.
Longer documents usually need code blocks, quotes, task lists, and tables.
Examples
# Heading
**Bold** and *italic*
[Link](/markdown-link)
- List item
`inline code`Paste this into the editor to see several common patterns render together.
FAQ
Markdown syntax is a set of plain text markers that render as headings, lists, links, emphasis, code blocks, and tables.
The basics are widely supported. Extended features such as tables and task lists can vary by platform.
Yes. Open the editor, paste any example, and compare the source with the rendered preview.