|
| 1 | +*** |
| 2 | + |
| 3 | +# Text formatting in Markdown |
| 4 | + |
| 5 | +**Contents** |
| 6 | + |
| 7 | +[Italics](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/new/master/Programming%20Tools/Markdown/Samples/MarkdownTextFormatting.md#Italics) |
| 8 | + |
| 9 | +[Bold](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/new/master/Programming%20Tools/Markdown/Samples/MarkdownTextFormatting.md#Bold) |
| 10 | + |
| 11 | +[Underline](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/new/master/Programming%20Tools/Markdown/Samples/MarkdownTextFormatting.md#Underline) |
| 12 | + |
| 13 | +[Crossthrough](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/new/master/Programming%20Tools/Markdown/Samples/MarkdownTextFormatting.md#Crossthrough) |
| 14 | + |
| 15 | +[Code](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/new/master/Programming%20Tools/Markdown/Samples/MarkdownTextFormatting.md#Code) |
| 16 | + |
| 17 | +[Indenting](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/new/master/Programming%20Tools/Markdown/Samples/MarkdownTextFormatting.md#Indenting) |
| 18 | + |
| 19 | +[Lists](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/new/master/Programming%20Tools/Markdown/Samples/MarkdownTextFormatting.md#Lists) |
| 20 | + |
| 21 | +**Page index** |
| 22 | + |
| 23 | +[Title](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/new/master/Programming%20Tools/Markdown/Samples/MarkdownTextFormatting.md#Text-formatting-in-Markdown) |
| 24 | + |
| 25 | +[End of instructions](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/new/master/Programming%20Tools/Markdown/Samples/MarkdownTextFormatting.md#You-have-reached-the-end) |
| 26 | + |
| 27 | +[File info](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/new/master/Programming%20Tools/Markdown/Samples/MarkdownTextFormatting.md#File-info) |
| 28 | + |
| 29 | +*** |
| 30 | + |
| 31 | +## Italics |
| 32 | + |
| 33 | +Place a `_` once before and after a word to give it an _Italics_ effect. |
| 34 | + |
| 35 | +You can _also do this with sentences._ |
| 36 | + |
| 37 | +You can also use `*` once before and after a word to give it the *Italics* effect. |
| 38 | + |
| 39 | +*** |
| 40 | + |
| 41 | +## Bold |
| 42 | + |
| 43 | +Place a double `*` before and after a word to give it a **Bold** effect. |
| 44 | + |
| 45 | +You can **also do this with sentences.** |
| 46 | + |
| 47 | +You can use a triple `*` to apply both **bold** and _Italics_ like ***This.*** |
| 48 | + |
| 49 | +*** |
| 50 | + |
| 51 | +## Underline |
| 52 | + |
| 53 | +There currently isn't a way to underline text in Markdown (that I know of at least) |
| 54 | + |
| 55 | +*** |
| 56 | + |
| 57 | +## Crossthrough |
| 58 | + |
| 59 | +Place a `~` before and after a word to give it a ~crossthrough effect~ |
| 60 | + |
| 61 | +~You can also do this with sentences~ |
| 62 | + |
| 63 | +*** |
| 64 | + |
| 65 | +## Code |
| 66 | + |
| 67 | +Place a ` |
| 68 | + |
| 69 | +before and after a word to give it a `code block effect` |
| 70 | + |
| 71 | +I had to split it into multiple lines due to syntax issues. |
| 72 | + |
| 73 | +Don't confuse this with the `'` punctuation. |
| 74 | + |
| 75 | +*** |
| 76 | + |
| 77 | +## Indenting |
| 78 | + |
| 79 | +Indenting in markdown uses the `>` key. You can indent text |
| 80 | + |
| 81 | +> Like this |
| 82 | +
|
| 83 | +You can have various formats on indents |
| 84 | + |
| 85 | +> ***Like*** ~`This`~ |
| 86 | +
|
| 87 | +*** |
| 88 | + |
| 89 | +## Lists |
| 90 | + |
| 91 | +There are a few different types of lists in Markdown. Here are the ones I know: |
| 92 | + |
| 93 | +1. Numbered |
| 94 | +2. List |
| 95 | +3. Entry3 |
| 96 | + |
| 97 | +> * 1. List |
| 98 | +> * 2. With |
| 99 | +> * 3. Roman |
| 100 | +> * 4. Numerals |
| 101 | +> * 5. 5 |
| 102 | +> * 6. 6 |
| 103 | +> * 7. 7 |
| 104 | +> * 8. 8 |
| 105 | +> * 9. 9 |
| 106 | +> * 10. 10 |
| 107 | +> * 11. 11 |
| 108 | +> * 12. 12 |
| 109 | +> * 13. 13 |
| 110 | +> * 14. 14 |
| 111 | +> * 15. 15 |
| 112 | +> * 16. 16 |
| 113 | +> * 17. 17 |
| 114 | +> * 18. 18 |
| 115 | +> * 19. 19 |
| 116 | +> * 20. 20 |
| 117 | +> * 21. 21 |
| 118 | +> * 22. 22 |
| 119 | +> * 23. 23 |
| 120 | +> * 24. 24 |
| 121 | +> * 25. 25 |
| 122 | +> * 26. 26 |
| 123 | +> * 27. 27 |
| 124 | +> * 28. 28 |
| 125 | +> * 29. 29 |
| 126 | +> * 30. 30 |
| 127 | +> * 31. 31 |
| 128 | +> * 32. 32 |
| 129 | +> * 33. 33 |
| 130 | +> * 34. 34 |
| 131 | +> * 35. 35 |
| 132 | +> * 36. 36 |
| 133 | +> * 37. 37 |
| 134 | +> * 38. 38 |
| 135 | +> * 39. 39 |
| 136 | +> * 40. 40 |
| 137 | +> * 41. 41 |
| 138 | +> * 42. 42 |
| 139 | +> * 43. 43 |
| 140 | +> * 44. 44 |
| 141 | +> * 45. 45 |
| 142 | +> * 46. 46 |
| 143 | +> * 47. 47 |
| 144 | +> * 48. 48 |
| 145 | +> * 49. 49 |
| 146 | +> * 50. 50 |
| 147 | +
|
| 148 | +> * Un-numbered |
| 149 | +> * List |
| 150 | +> * With |
| 151 | +> * Bullets |
| 152 | +
|
| 153 | +> * Separated |
| 154 | +
|
| 155 | +> * Un-numbered |
| 156 | +
|
| 157 | +> * List |
| 158 | +
|
| 159 | +> * With |
| 160 | +
|
| 161 | +> * Bullets |
| 162 | +
|
| 163 | +*** |
| 164 | + |
| 165 | +### You have reached the end |
| 166 | + |
| 167 | +This is all I currently know about text formatting in Markdown |
| 168 | + |
| 169 | +*** |
| 170 | + |
| 171 | +### File info |
| 172 | + |
| 173 | +File type: `Markdown (*.md)` |
| 174 | + |
| 175 | +Line count: `0,180` |
| 176 | + |
| 177 | +Version: `1 (Monday, June 8th 2020 at 6:00 pm)` |
| 178 | + |
| 179 | +*** |
0 commit comments