diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-25 19:54:26 +0200 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-25 19:54:26 +0200 |
| commit | b0902c05ffc84d282e10a0179e041948d49fabf8 (patch) | |
| tree | 7a8a51b48f16d448915bf13c6b41cb176ac5d506 /src/parser.zig | |
| parent | 0a0d579f34e12639c89d890d25be038c5ae81e00 (diff) | |
feat(): supports list unordored
Yes, these files were missing...
Diffstat (limited to 'src/parser.zig')
| -rw-r--r-- | src/parser.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser.zig b/src/parser.zig index 752267e..8c170e7 100644 --- a/src/parser.zig +++ b/src/parser.zig @@ -56,6 +56,7 @@ fn gen(parent: Allocator, l: *Lexer) Error!Document { // other blocks .title => try title.parse(alloc, l), .list_ordored => try list.parseOrdored(alloc, l), + .list_unordored => try list.parseUnordored(alloc, l), .weak_delimiter, .strong_delimiter => { l.consume(); continue :base; |
