diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-29 19:55:57 +0200 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-29 19:55:57 +0200 |
| commit | afd538d6af0baf8a1861ff2cdef881edbfb57000 (patch) | |
| tree | db41d566c318163cb41916defd7cd274b92a9a43 /src/eval/Element.zig | |
| parent | 0535fa152ae990a28d0b7b9a59e96911074118b8 (diff) | |
feat(): support math content
Diffstat (limited to 'src/eval/Element.zig')
| -rw-r--r-- | src/eval/Element.zig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/eval/Element.zig b/src/eval/Element.zig index 73dfb94..16905b4 100644 --- a/src/eval/Element.zig +++ b/src/eval/Element.zig @@ -11,6 +11,11 @@ pub const Code = blocks.Code; pub const Figure = blocks.Figure; pub const Callout = blocks.Callout; pub const Quote = blocks.Quote; +pub const Math = @import("math.zig"); + +comptime { + _ = Math; +} pub const Node = struct { ptr: *anyopaque, |
