Skip to content

Latest commit

 

History

History
119 lines (67 loc) · 1.46 KB

File metadata and controls

119 lines (67 loc) · 1.46 KB

Markdown Snippets

Headings

# Heading will produce it's own underline, apparently

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Emphasis / Italics

This text is italic

This is also italic or emphasis

Strong

This text is strong

This text is also strong

Strikethrough

This text is strikethrough

Horizontal Rule (hyphens or underscores)



Escape characters

*This text* has escape characters so you can see the asterisks

Blockquote

This is a quote.

Links

Ray Dean

Ray Dean

UL

  • Item 1
  • Item 2
  • Item 3
    • Nested Item 1
    • Nested Item 2

OL

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

Inline Code Block

<p>This is a code block.</p>

Images

Markdown Logo

GitHub Markdown

Code Blocks

    npm install

    npm start
    function add (num1, num2) {
        return num1 + num2
    };
    def add (num1, num2):
        return num1 + num2

Tables

Command Description
git status List all new or modified files
git diff Show file differences that haven't been staged

Task Lists

  • Task 1
  • Task 2
  • Task 3