header#
header 2#
header 3#
header 4#
header 5#
italics italics
bold
bold
==highlight==
- asd
- asd
- asd
- asd
numbered lists
- a
- b
- c
- d
- e
- f
- g
ctrl + L = checklist
- a
- b
- c
- d
- e
- f
- g
use the pipe ( | ) to rename links
[[]]
headers in the same page
[[learning Markdown#header 5| changed display name]]
blocks in the same page ^block
[[learning Markdown#^block| De Block]]
website url www.arianshahrabi.ca
put a ! if you want to embed the link
footnotes
tables
| header | header 2 | ||
|---|---|---|---|
| cell value | cell value2 | ||
quotes
Arian is sigma Arian
add tilde to start writing code``
#include <iostream>
//demo
int main()
{
int number = 4;
while(int == 4)
{
number + number + 10;
std::cout << number << std::endl;
break;
}
return 0;
}