Catalog / Markdown Cheatsheet

Markdown Cheatsheet

A quick reference guide to Markdown syntax, covering essential elements for formatting text, creating lists, adding links and images, and more.

Basic Syntax

Headers

Heading 1

Largest header

Heading 2

Second largest header

Heading 3

Third largest header

Heading 6

Smallest header

Text Formatting

Italic

Italic text

Bold

Bold text

Bold Italic

Bold and italic text

Strikethrough

Strikethrough text

Lists

  • Item 1
  • Item 2
  • Item 3

Unordered list

  1. Item 1
  2. Item 2
  3. Item 3

Ordered list

  • To do
  • Done

Task list

Links & Images

Code and Quotes

Code

Inline code

// Code block
var foo = 'bar';
// Code block with language
var foo = 'bar';

Blockquotes

Blockquote

Multiple lines
in blockquote

Nested

>> Blockquote

Horizontal Rule & Escaping

Horizontal Rule




Escaping Characters

*text*

# Header

Tables

Header 1 Header 2
Cell 1 Cell 2
Left-aligned Center-aligned Right-aligned
Cell 1 Cell 2 Cell 3