if(!Util.isWindows()) {
// on windows we don't escape, this would mess up file system paths for example.
enterState('\\', EscapeCharacterState.INSTANCE);
enterState('"', QuotesState.QUOTES_INCLUDED);
} else {
enterState('"', new QuotesState(true, false));
}
setDefaultHandler(GlobalCharacterHandlers.CONTENT_CHARACTER_HANDLER);
}