Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save explorest/e198bda6de615f170fcd3b49550cce83 to your computer and use it in GitHub Desktop.

Select an option

Save explorest/e198bda6de615f170fcd3b49550cce83 to your computer and use it in GitHub Desktop.

Revisions

  1. @luvuong-le luvuong-le created this gist Aug 31, 2020.
    91 changes: 91 additions & 0 deletions markdown-syntax-basics.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,91 @@
    # Headings

    # Heading 1

    ## Heading 2

    ### Heading 3

    ###### Heading 6

    # Emphasis

    This is some normal text

    **This is bold text**

    _This is italic text_


    # Lists

    ### Unordered

    - List Item 1
    - List Item 2
    - List Item 2.1

    * List Item 1
    * List Item 2
    * List Item 2.1

    ### Ordered

    1. List Item 1
    2. List Item 2
    3. List Item 3
    1. List Item 3.1
    2. List Item 3.2

    1. List Item 1
    1. List Item 2
    1. List Item 3
    1. List Item 3.1
    1. List Item 3.2

    ## Links

    [Text Displayed](Link)

    [Google](https://www.google.com)

    ## Images

    [Alt](Source)

    ![Dog picture](images/dog.jpg)

    ## Blockquotes

    My favourite quote is:

    > Quote Line 1
    >
    > Quote Line 2
    ## Strikethrough

    ~~strike this text~~

    ## Tables
    | Technology | Description | Link ⚓️ |
    |--------------|-------------|---------|
    | Some content | content | content |
    | Some content | content | content |
    | Some content | content | content |
    | Some content | content | content |
    | Some content | content | content |
    | Some content | content | content |
    | Some content | content | content |

    ## Inline code

    This is a `console.log()`

    ## Code snippets

    ```javascript
    const test = "This is a test";

    console.log(test);
    ```