diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-30 17:36:52 +0200 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-30 17:36:52 +0200 |
| commit | 5ecd48d4b9f928beb4143f88e802ee4d9e25a2bd (patch) | |
| tree | 6fd4944a8c81891046c7006336f46b808b56d08d /src/link.zig | |
| parent | 103efd52b59f77fbfde6a1b7daf65b16c2c26810 (diff) | |
refactor(element): supports more type in root append
Diffstat (limited to 'src/link.zig')
| -rw-r--r-- | src/link.zig | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/link.zig b/src/link.zig index ecfad83..1fb4a59 100644 --- a/src/link.zig +++ b/src/link.zig @@ -25,10 +25,7 @@ pub fn parse(alloc: Allocator, l: *Lexer) Error!Element { if (!eql(u8, next.content, "](")) return Error.InvalidLink; break; }, - else => { - const in = try content.parse(el.allocator(), l); - el.append(in); - }, + else => el.append(try content.parse(el.allocator(), l)), }; const href = l.next() orelse return Error.InvalidLink; if (href.kind != .literal) return Error.InvalidLink; |
