1
2
3
4
5
6
7
#[cfg(test)]
mod test;
pub mod parser;

pub fn unescape_literal(literal: &str) -> String {
    literal.replace(r#"\%\{"#, "%{")
}