public Keyword keyword() {
return Keyword.ESCAPE;
}
public IParser create(final IContext ctx) {
return new ParserBase(ctx) {
public Token go() {
Regex r = reg(dialect());
if (!r.search(remain())) return null;
final String matched = r.stringMatched();
if (matched.startsWith("\n") || matched.endsWith("\n")) {