escaper 0.1.1

A library for HTML entity encoding and decoding
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extern crate entities;

pub use decode::*;
pub use encode::*;

mod decode;
mod encode;
mod io_support;

pub static MINIMAL_ENTITIES: [(char, &str); 5] = [
    ('"', """),
    ('&', "&"),
    ('\'', "'"),
    ('<', "&lt;"),
    ('>', "&gt;"),
];