Last active
May 31, 2018 20:33
-
-
Save tychota/cb7ed792ff3789969a1dbe8a4942803a to your computer and use it in GitHub Desktop.
Revisions
-
tychota revised this gist
May 31, 2018 . 1 changed file with 3 additions and 0 deletions.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 @@ -15,6 +15,7 @@ const test = "test"; <td>Apple</td> <td>red</td> <td><p> `$0.93` </p></td> @@ -24,10 +25,12 @@ const test = "test"; <td>Banana</td> <td>yellow</td> <td><p> `$0.19` </p></td> <td><p> **YES** </p></td> -
tychota revised this gist
May 31, 2018 . 1 changed file with 12 additions and 3 deletions.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 @@ -14,13 +14,22 @@ const test = "test"; <tr> <td>Apple</td> <td>red</td> <td><p> `$0.93` </p></td> <td>no</td> </tr> <tr> <td>Banana</td> <td>yellow</td> <td><p> `$0.19` </p></td> <td><p> **YES** </p></td> </tr> </table> -
tychota revised this gist
May 31, 2018 . 1 changed file with 3 additions and 3 deletions.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 @@ -14,13 +14,13 @@ const test = "test"; <tr> <td>Apple</td> <td>red</td> <td><p>`$0.93`</p></td> <td>no</td> </tr> <tr> <td>Banana</td> <td>yellow</td> <td><p>`$0.19`</p></td> <td><p>**YES**</p></td> </tr> </table> -
tychota revised this gist
May 31, 2018 . 1 changed file with 2 additions 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 @@ -1,11 +1,12 @@ <table> <tr> <th><p> ```js const test = "test"; ``` </p></th> <th>Color</th> <th>Price</th> <th>Peel?</th> -
tychota renamed this gist
May 31, 2018 . 1 changed file with 6 additions 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 @@ -1,6 +1,11 @@ <table> <tr> <th><p> ```js const test = "test"; ``` </p></th> <th>Color</th> <th>Price</th> <th>Peel?</th> -
tychota created this gist
May 31, 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,20 @@ <table> <tr> <th>Fruit</th> <th>Color</th> <th>Price</th> <th>Peel?</th> </tr> <tr> <td>Apple</td> <td>red</td> <td>`$0.93`</td> <td>no</td> </tr> <tr> <td>Banana</td> <td>yellow</td> <td>`$0.19`</td> <td>**YES**</td> </tr> </table>