commit b68c5728247ab87f43412accb2a34aac3308af91 Author: N0\A Date: Fri Jul 10 13:46:25 2026 +0200 first commit diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3d42f65 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +all: + gcc -o typoml src/* + +run: + ./typoml + +clean: + rm -f typoml diff --git a/README.tlm b/README.tlm new file mode 100644 index 0000000..8edb0bf --- /dev/null +++ b/README.tlm @@ -0,0 +1,19 @@ +! Heading +!! Smolr heading + +^[http://example.com](Link on the right) >> +(Example.com)[http://example.com]^ +[https://n0va.nekoweb.org]^(Link to nekoweb.org in the middle) ^^ + +$[https://n0va.nekoweb.org/assets/empty.gif] + +*italic* +**bold** +***bold italic*** + +--strikethrough-- +~~strikethrough~~ + +$(variable=17) + +The **VARIABLE** is $(variable) diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..33c14ce --- /dev/null +++ b/src/main.c @@ -0,0 +1,3 @@ +int main() { + return 0; +}