escapade 0.0.3

`escapade` provides String concatenation and writing, but automatically escapes any HTML in the data in the process. This prevents accidental unescaped writes to the output.
Documentation
1
2
3
4
5
6
7
pub static MINIMAL_ENTITIES: [(char, &'static str); 5] = [
    ('"', """),
    ('&', "&"),
    ('\'', "'"),
    ('<', "&lt;"),
    ('>', "&gt;")
];