Skip to content

CheatSheet for .md file

D-K0 edited this page Nov 27, 2021 · 7 revisions

Cheat sheet for WRITING on GitHub:

Titles:

  • # : major title
  • ## : secondary title
  • ### : tertiary title (similar to secondary but with no underline)

Lines:

  • --- : horizontal cross page line
  • > : verticle line next to text

emphsize:

  • _ {txt} _or *{txt}* : italic
  • __ {txt} __ or **{txt}** : bold (double italic symbols)
  • ~~{txt}~~ : strike through
  • <ins> {txt} <\ins> : underline
  • `{text}` : square thingy

Lists:

  • *{space} : unordered first level
  • {space}{space}*{space}: unordered second level (+ X2 space)
  1. 1.{space} : ordered first level
  2. {space}{space}1.{space} : ordered second level (+ X2 space)

Table (uses html tags):

  • <table> : section is a teble
  • <tr> : row
    • <td> : coloumn
    • <th> : head column

single cell:

<table> <tr> <td>
  
 {text}
  
</td> </tr> </table>

multiple cells:

<table> 
<tr> 
<th>{H1}</th>
<th>{H2}</th>
</tr> 
  
<tr> 
<td>{C11}</td>
<td>{C12}</td>
</tr>
  
<tr> 
<td>{C21}</td>
<td>{C22}</td>
</tr>
</table>

or

H1 | H2
-- | --
C11 | C12
C21 | C22
Clone this wiki locally