Skip to content
Snippets Groups Projects
Commit 4928e8a8 authored by Michael Aaron Murphy's avatar Michael Aaron Murphy
Browse files

Fix #554

Closes #554
parent 9d32f207
No related branches found
No related tags found
No related merge requests found
......@@ -115,7 +115,10 @@ fn escape(input: &str) -> String {
| b'>'
| b';'
| b'"'
| b'\'' => output.push(b'\\'),
| b'\''
| b'#'
| b'^'
| b'*' => output.push(b'\\'),
_ => (),
}
output.push(character);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment