md4tj/test_file.md4tj

28 lines
500 B
Plaintext
Raw Normal View History

@@META charset UTF-8
@@META name viewport content width=device-width,initial-scale=1.0
@@TITLE Test webpage
# Hello `world`!
## Hello world!
### Hello world!
#### Hello ***world***!
2022-12-29 14:17:59 -05:00
@@INCLUDE test_file_include.md4tj
[Example website](https://example.com)
![Example image](usbs.png)
2023-01-03 18:34:40 -05:00
!![Example video](test_video.webm)
- unordered item 1
- unordered item 2
- unordered item 3
1. ordered item 1
2. ordered item 2
```
#include <stdio.h>
int main() {
printf("%s\n", "Hello World!");
return 0;
}
```