code-span 0.2.0

Add additional infomation to code character
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
Code Span
=========

Add additional information to your code spans.

```rust
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"));
}
```