48 lines
435 B
Markdown
48 lines
435 B
Markdown
hello `world`
|
|
|
|
|
|
This `is also a code block`
|
|
|
|
hi `mom
|
|
hello`
|
|
|
|
hi `mom
|
|
|
|
this is too far`
|
|
|
|
|
|
*this is **words***
|
|
|
|
## **Hello world**
|
|
|
|
### hello *world*
|
|
|
|
# ***This is both!***
|
|
|
|
###### This is neither
|
|
|
|
- Hello world
|
|
- This is a list
|
|
|
|
|
|
* this is also a list
|
|
* this is still a list
|
|
|
|
|
|
1. This list is ordered
|
|
2. This is **number two**
|
|
|
|
- hello
|
|
world
|
|
|
|
- hello
|
|
|
|
world number two
|
|
|
|
```
|
|
int x = 5;
|
|
int y = 10;
|
|
|
|
console.log(x + y); // '15'
|
|
```
|