Adds support to EscapeSeqDecode transformation

This commit is contained in:
Felipe Zimmerle
2015-10-23 14:22:03 -03:00
parent 1716add77b
commit 4168ebc2b3
3 changed files with 120 additions and 12 deletions

View File

@@ -79,7 +79,7 @@ Transformation* Transformation::instantiate(std::string a) {
IF_MATCH(cmd_line) { return new CmdLine(a); }
IF_MATCH(compress_whitespace) { return new CompressWhitespace(a); }
IF_MATCH(cssDecode) { return new CssDecode(a); }
IF_MATCH(escape_seq_decode) { return new EscapeSeqDecode(a); }
IF_MATCH(escapeSeqDecode) { return new EscapeSeqDecode(a); }
IF_MATCH(hexDecode) { return new HexDecode(a); }
IF_MATCH(hexEncode) { return new HexEncode(a); }
IF_MATCH(htmlEntityDecode) { return new HtmlEntityDecode(a); }