r/o

port comrak quadratic fixes fc2df9bf parent 115c6669

Closes #45.

authored by ~talya committed by ~lotte

1
all:
2
zig build run
3
4
test:
5
zig build test
6
7
exe:
8
echo hello | zig build run
9
zig build run --help
10
zig build run -- --help
11
12
spec:
13
zig build
14
cd vendor/cmark-gfm/test && python3 spec_tests.py --program=../../../zig-out/bin/koino
15
16
fetch-clap:
17
zig fetch --save https://github.com/Hejsil/zig-clap/archive/refs/tags/0.11.0.tar.gz
18
19
fetch-htmlentities:
20
zig fetch --save git+https://nossa.ee/~talya/htmlentities.zig
21
22
fetch-libpcre:
23
zig fetch --save git+https://github.com/kivikakk/libpcre.zig
24
25
fetch-zunicode:
26
zig fetch --save git+https://github.com/mishieck/zunicode
27
28
example:
29
zig build example
30