srctree

Gregory Mullen parent e5fa49e3 d44352bc
add clean() to abx.html

src/antibiotic.zig added: 12, removed: 1, total 11
@@ -60,6 +60,17 @@ pub const Html = struct {
try out.writeAll(buf[0 .. cleanHtml(c, &buf) catch unreachable]);
}
}
 
pub fn clean(src: u8) ?[]const u8 {
return switch (src) {
'<' => "&lt;",
'&' => "&amp;",
'>' => "&gt;",
'"' => "&quot;",
'\'' => "&apos;",
else => null,
};
}
};
 
/// Basic html sanitizer. Will replace all chars, even when it may be