Skip to content

Latest commit

 

History

History
118 lines (94 loc) · 2.13 KB

MarkDownCheatSheet.md

File metadata and controls

118 lines (94 loc) · 2.13 KB

Headings

This is an H1

This is an H2

This is an H6

This is also an H1

This is also an H2


Paragraphs Paragraph 1

Paragraph 2

Character styles Italic characters Italic characters bold characters bold characters strikethrough text

Unordered list

  • Item 1
  • Item 2
  • Item 3
    • Item 3a
    • Item 3b
    • Item 3c

Ordered list

  1. Step 1
  2. Step 2
  3. Step 3
    1. Step 3.1
    2. Step 3.2
    3. Step 3.3

List in list

  1. Step 1
  2. Step 2
  3. Step 3
    • Item 3a
    • Item 3b
    • Item 3c

Quotes or citations Introducing my quote:

Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...


Inline code characters Use the backtick to refer to a function(). There is a literal backtick (`) here.

Code blocks Indent every line of the block by at least 4 spaces.

This is a normal paragraph:

This is a code block.
With multiple lines.

Alternatively, you can use 3 backtick quote marks before and after the block, like this:

This is a code block

To add syntax highlighting to a code block, add the name of the language immediately after the backticks:

var oldUnload = window.onbeforeunload;
window.onbeforeunload = function() {
    saveCoverage();
    if (oldUnload) {
        return oldUnload.apply(this, arguments);
    }
};

Links to external websites This is an example inline link.

This link has a title attribute.

Links are also auto-detected in text: http://example.com/

Images Alt text Alt text Alt text Mockup for feature A

reference style ![Alt text][id] [id]: url/to/image.jpg "Optional title attribute"

Tables

Day Meal Price
Monday pasta $6
Tuesday chicken $8