Skip to content

Latest commit

 

History

History
95 lines (58 loc) · 1.17 KB

Markdown cheat.md

File metadata and controls

95 lines (58 loc) · 1.17 KB

Heading

H1

H2

H3

Bold

bold text

Italic

italicized text

Line feeds

Simple line feeds in the source are ignored, double line feeds are respected.
To force a single line feed, use [space][space][return] or [backslash][return]

Blockquote

blockquote

Ordered List

  1. First item
  2. Second item
  3. Third item

Unordered List

  • First item
  • Second item
  • Third item

Code

code

Horizontal Rule


Link

title

Image

alt text

Extended Syntax

These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.

Table

Syntax Description
Header Title
Paragraph Text

Fenced Code Block

{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}

Footnote

Here's a sentence with a footnote. 1

Heading ID

My Great Heading {#custom-id}

Definition List

term : definition

Strikethrough

The world is flat.

Task List

  • Write the press release
  • Update the website
  • Contact the media

Footnotes

  1. This is the footnote.