[][src]Function ellidri_tokens::tag_escape

pub fn tag_escape(c: char) -> char

Match a tag escape with its meaningful character.

Example

assert_eq!(tag_escape(':'), ';');  // "\:" is ";"
assert_eq!(tag_escape('b'), 'b');  // "\b" is "b"