Hayden Hargreaves 1c81d2aa41 (FEAT): Includes support for code block segments.
This includes the addition of lots of new node elements.
2025-10-28 17:45:40 -07:00

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'
```