We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32d9b00 commit dfabbe3Copy full SHA for dfabbe3
EmbAJAX.cpp
@@ -42,6 +42,8 @@ void EmbAJAXOutputDriverBase::_printFiltered(const char* value, QuoteMode quoted
42
if ((quoted == JSQuoted) && (*pos == '"' || *pos == '\\')) {
43
_printChar('\\');
44
_printChar(*pos);
45
+ } else if ((quoted == JSQuoted) && (*pos == '\n')) {
46
+ _printContent("\\n");
47
} else if ((quoted == HTMLQuoted) && (*pos == '"')) {
48
_printContent(""");
49
} else if (HTMLescaped && (*pos == '<')) {
0 commit comments