|
@@ -522,7 +522,8 @@ public final class HTMLFilter
|
|
|
final String one = m.group(1);
|
|
|
final String two = m.group(2);
|
|
|
final String three = m.group(3);
|
|
|
- m.appendReplacement(buf, Matcher.quoteReplacement(one + regexReplace(P_QUOTE, """, two) + three));
|
|
|
+
|
|
|
+ m.appendReplacement(buf, Matcher.quoteReplacement(one + two + three));
|
|
|
}
|
|
|
m.appendTail(buf);
|
|
|
return buf.toString();
|