public Keyword keyword() {
return Keyword.RAW;
}
public IParser create(final IContext ctx) {
return new ParserBase(ctx) {
public Token go() {
Matcher m = ptn(dialect()).matcher(remain());
if (!m.matches()) return null;
final String matched = m.group(1);
if (matched.startsWith("\n") || matched.endsWith("\n")) {