We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 090f80d commit 440e699Copy full SHA for 440e699
1 file changed
src/html/elements/svg.zig
@@ -4,11 +4,17 @@ const Element = @import("../Element.zig");
4
pub const svg: Element = .{
5
.tag = .svg,
6
.model = .{
7
- .categories = .{ .flow = true },
+ .categories = .{
8
+ .flow = true,
9
+ .phrasing = true,
10
+ },
11
.content = .none,
12
},
13
.meta = .{
- .categories_superset = .{ .flow = true },
14
+ .categories_superset = .{
15
16
+ .phrasing =true,
17
18
19
.attributes = .manual, // we just don't do it
20
.content = .model,
0 commit comments