They REALLY should have been there from the beginning...
@ -46,6 +46,12 @@ std::string utils::html_xss(std::string_view str)
case '%':
result += "%";
break;
case '\'':
result += "'";
case '&':
result += "&";
default:
result += c;
}
该备注对被屏蔽的用户不可见。