-
-
Save dennis-gonzales/cf699bc7da16473fea5d9a392ccdbc61 to your computer and use it in GitHub Desktop.
Revisions
-
dennis-gonzales revised this gist
Aug 28, 2020 . 1 changed file with 1 addition and 1 deletion.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 @@ -77,6 +77,6 @@ ___ | Jane Doe | [email protected] | <!-- Task List --> * [x] Task 1 * [ ] Task 2 * [ ] Task 3 -
dennis-gonzales revised this gist
Aug 28, 2020 . 1 changed file with 1 addition and 1 deletion.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 @@ -79,4 +79,4 @@ ___ <!-- Task List --> * [ ] Task 1 * [ ] Task 2 * [ ] Task 3 -
dennis-gonzales revised this gist
Apr 5, 2020 . 1 changed file with 1 addition and 1 deletion.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 @@ -77,6 +77,6 @@ ___ | Jane Doe | [email protected] | <!-- Task List --> * [ ] Task 1 * [ ] Task 2 * [x] Task 3 -
dennis-gonzales revised this gist
Apr 5, 2020 . 1 changed file with 1 addition and 1 deletion.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 @@ -78,5 +78,5 @@ ___ <!-- Task List --> * [x] Task 1 * [ ] Task 2 * [x] Task 3 -
dennis-gonzales revised this gist
Apr 5, 2020 . 1 changed file with 1 addition and 1 deletion.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 @@ -79,4 +79,4 @@ ___ <!-- Task List --> * [x] Task 1 * [x] Task 2 * [x] Task 3 -
bradtraversy revised this gist
Mar 23, 2018 . 1 changed file with 1 addition and 1 deletion.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 @@ -79,4 +79,4 @@ ___ <!-- Task List --> * [x] Task 1 * [x] Task 2 * [ ] Task 3 -
bradtraversy created this gist
Mar 23, 2018 .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,82 @@ <!-- Headings --> # Heading 1 ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6 <!-- Italics --> *This text* is italic _This text_ is italic <!-- Strong --> **This text** is italic __This text__ is italic <!-- Strikethrough --> ~~This text~~ is strikethrough <!-- Horizontal Rule --> --- ___ <!-- Blockquote --> > This is a quote <!-- Links --> [Traversy Media](http://www.traversymedia.com) [Traversy Media](http://www.traversymedia.com "Traversy Media") <!-- UL --> * Item 1 * Item 2 * Item 3 * Nested Item 1 * Nested Item 2 <!-- OL --> 1. Item 1 1. Item 2 1. Item 3 <!-- Inline Code Block --> `<p>This is a paragraph</p>` <!-- Images -->  <!-- Github Markdown --> <!-- Code Blocks --> ```bash npm install npm start ``` ```javascript function add(num1, num2) { return num1 + num2; } ``` ```python def add(num1, num2): return num1 + num2 ``` <!-- Tables --> | Name | Email | | -------- | -------------- | | John Doe | [email protected] | | Jane Doe | [email protected] | <!-- Task List --> * [x] Task 1 * [x] Task 2 * [] Task 3