Last active
August 31, 2023 00:14
-
-
Save mokagio/2dc7c31faf624385210afa2cda3a2ee1 to your computer and use it in GitHub Desktop.
Revisions
-
mokagio revised this gist
Feb 14, 2019 . 1 changed file with 6 additions and 4 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 @@ -1,4 +1,4 @@ This: ```mt heading 1 | heading 2 | heading 3 @@ -7,14 +7,16 @@ abc | bcd | cde def | efg | fgh ``` becomes this: heading 1 | heading 2 | heading 3 --- | --- | --- abc | bcd | cde def | efg | fgh --- You can also use plain old HTML tables. This: ```html <table> @@ -36,7 +38,7 @@ You can also use plain old HTML tables. This </table> ``` becomes this: <table> <tr> -
mokagio revised this gist
Feb 14, 2019 . 1 changed file with 3 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 @@ -54,4 +54,6 @@ becomes this <td>efg</td> <td>fgh</td> </tr> </table> Using HTML is handy because you can do more advanced things like nested tables, or adding lists within cells. -
mokagio created this gist
Feb 14, 2019 .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,57 @@ This ```mt heading 1 | heading 2 | heading 3 --- | --- | --- abc | bcd | cde def | efg | fgh ``` becomes this heading 1 | heading 2 | heading 3 --- | --- | --- abc | bcd | cde def | efg | fgh You can also use plain old HTML tables. This ```html <table> <tr> <th>heading 1</th> <th>heading 2</th> <th>heading 3</th> </tr> <tr> <td>abc</td> <td>bcd</td> <td>cde</td> </tr> <tr> <td>def</td> <td>efg</td> <td>fgh</td> </tr> </table> ``` becomes this <table> <tr> <th>heading 1</th> <th>heading 2</th> <th>heading 3</th> </tr> <tr> <td>abc</td> <td>bcd</td> <td>cde</td> </tr> <tr> <td>def</td> <td>efg</td> <td>fgh</td> </tr> </table>