exile 0.0.9

DOM-Style XML Parser
Documentation
1
2
3
4
5
6
7
8
/// `#x20` or `' '`
pub(crate) const SPACE: char = ' ';
/// `#x9` or `'\t'`
pub(crate) const TAB: char = '\t';
/// `#xD` or `'\r'`
pub(crate) const CARRIAGE_RETURN: char = '\r';
/// `#0A` pr `'\n'`
pub(crate) const NEWLINE: char = '\n';