Note: we recognize only <%, <\%, %>, %\>, ${ and $\{. Unlike JSP, we don't recognize \${ or \$\{. @author tomyeh
139140141142143144145146
String ctype = Interpreter.getContentType(path); if (ctype == null) ctype = ";charset=UTF-8"; else if (ctype.indexOf(';') < 0 && !ContentTypes.isBinary(ctype)) ctype += ";charset=UTF-8"; return new Interpreter() .parse(content, ctype, null, _webctx.getLocator()); }