From b68c5728247ab87f43412accb2a34aac3308af91 Mon Sep 17 00:00:00 2001 From: "N0\\A" Date: Fri, 10 Jul 2026 13:46:25 +0200 Subject: [PATCH] first commit --- Makefile | 8 ++++++++ README.tlm | 19 +++++++++++++++++++ src/main.c | 3 +++ 3 files changed, 30 insertions(+) create mode 100644 Makefile create mode 100644 README.tlm create mode 100644 src/main.c 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; +}