diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-28 20:52:56 +0200 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-28 20:52:56 +0200 |
| commit | c6e771fff0515d3a8e0cbc928c103b6c86f22c0f (patch) | |
| tree | 6b3130e33680d5beb1e6ab9bba818352e83657dc /src/lexer | |
| parent | 7b1b855ed68b4fc72d01de170226ea0fcc74a512 (diff) | |
feat(): support quote
Diffstat (limited to 'src/lexer')
| -rw-r--r-- | src/lexer/Token.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lexer/Token.zig b/src/lexer/Token.zig index 3162869..8ac5d34 100644 --- a/src/lexer/Token.zig +++ b/src/lexer/Token.zig @@ -28,7 +28,7 @@ pub const Kind = enum { }; } - pub inline fn isPar(self: @This()) bool { + pub inline fn isInParagraph(self: @This()) bool { return switch (self) { .literal, .link, .code, .math, .bold, .italic, .ref => true, else => false, |
