BBX
A robust and performant (constant time, no recursion) BBCode pull parser with no_std/alloc support.
Examples
Quick parsing
// Parse a document, throwing all of its component tokens into the console.
let mut parser = new;
for token in parser
Quick sanitized HTML output
// Simple serializer default with all of the v1.0.0 (or earlier) tags considered "core" to the library.
let mut serializer: =
with_tags;
let mut parser = new;
println!;
println!;