code-span 0.2.0

Add additional infomation to code character
Documentation

Code Span

Add additional information to your code spans.

fn main() {
    use code_span::CodeView;
    let mut view = CodeView::blank("public static class MyClass {}");
    view.mark_offset(0, 6, Some("keyword"));
    view.mark_offset(7, 13, Some("keyword"));
}