diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-27 20:49:13 +0200 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-27 20:49:13 +0200 |
| commit | e154408e8ddeaee83242002f4c7af68b29d3a677 (patch) | |
| tree | d0caadc01e77aa15edb204b1529fac168775329a /src/parser.zig | |
| parent | 3b0e9424a66058da82d11d432da886ec7b6ce7eb (diff) | |
feat(): support callout
Diffstat (limited to 'src/parser.zig')
| -rw-r--r-- | src/parser.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parser.zig b/src/parser.zig index 9d89d7d..db91641 100644 --- a/src/parser.zig +++ b/src/parser.zig @@ -8,6 +8,7 @@ const title = @import("title.zig"); const link = @import("link.zig"); const list = @import("list.zig"); const code = @import("code.zig"); +const callout = @import("callout.zig"); pub const Error = error{FeatureNotSupported} || Lexer.Error || @@ -17,6 +18,7 @@ pub const Error = error{FeatureNotSupported} || list.Error || link.ImageError || code.Error || + callout.Error || Allocator.Error; pub const Document = *Element.Root; |
