-
-
Save explorest/e198bda6de615f170fcd3b49550cce83 to your computer and use it in GitHub Desktop.
Revisions
-
luvuong-le created this gist
Aug 31, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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)  ## 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); ```