Skip to content

Usefull markdown commands#

Keyboard characters#

<kbd>Alt</kbd>+<kbd>F2</kbd>+<kbd>Space</kbd>
Will display Alt+F2+Space

Headers#

Heading#

H1

Heading#

H2

Heading#

H3

Displays text in italics#

_Text_
Text

Displays the text in bold#

**Text**
Text

Combine Italics and Bold#

**_Text_**
Text

Code Block#

```code block ```
code block

Note

if you add bash or sql behind the start of the code block you can get the correct syntax hilighting.

```bash
#!/bin/bash
some code
#!/bin/bash
some code

Grid#

|   |   |   |   |   |
|---|---|---|---|---|
|   |   |   |   |   |
|   |   |   |   |   |
|   |   |   |   |   |

Will look as follows:

Draw diagrams#

Note

https://monodraw.helftone.com/

Download the above

         ┌──────┐             ┌──────┐
         │┌────┐│             │┌────┐│
         ││db1 ││             ││db2 ││
         │└────┘│◀───────────▶│└────┘│
         │      │             │      │
         └──────┘             └──────┘