mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
Allow summary tag
This commit is contained in:
parent
ff87bef030
commit
732b82c04d
1 changed files with 10 additions and 9 deletions
|
@ -421,15 +421,16 @@ QString
|
||||||
utils::escapeBlacklistedHtml(const QString &rawStr)
|
utils::escapeBlacklistedHtml(const QString &rawStr)
|
||||||
{
|
{
|
||||||
static const std::set<QByteArray> allowedTags = {
|
static const std::set<QByteArray> allowedTags = {
|
||||||
"font", "/font", "del", "/del", "h1", "/h1", "h2", "/h2",
|
"font", "/font", "del", "/del", "h1", "/h1", "h2", "/h2",
|
||||||
"h3", "/h3", "h4", "/h4", "h5", "/h5", "h6", "/h6",
|
"h3", "/h3", "h4", "/h4", "h5", "/h5", "h6", "/h6",
|
||||||
"blockquote", "/blockquote", "p", "/p", "a", "/a", "ul", "/ul",
|
"blockquote", "/blockquote", "p", "/p", "a", "/a", "ul", "/ul",
|
||||||
"ol", "/ol", "sup", "/sup", "sub", "/sub", "li", "/li",
|
"ol", "/ol", "sup", "/sup", "sub", "/sub", "li", "/li",
|
||||||
"b", "/b", "i", "/i", "u", "/u", "strong", "/strong",
|
"b", "/b", "i", "/i", "u", "/u", "strong", "/strong",
|
||||||
"em", "/em", "strike", "/strike", "code", "/code", "hr", "/hr",
|
"em", "/em", "strike", "/strike", "code", "/code", "hr", "/hr",
|
||||||
"br", "br/", "div", "/div", "table", "/table", "thead", "/thead",
|
"br", "br/", "div", "/div", "table", "/table", "thead", "/thead",
|
||||||
"tbody", "/tbody", "tr", "/tr", "th", "/th", "td", "/td",
|
"tbody", "/tbody", "tr", "/tr", "th", "/th", "td", "/td",
|
||||||
"caption", "/caption", "pre", "/pre", "span", "/span", "img", "/img"};
|
"caption", "/caption", "pre", "/pre", "span", "/span", "img", "/img",
|
||||||
|
"details", "/details", "summary", "/summary"};
|
||||||
constexpr static const std::array tagNameEnds = {' ', '>'};
|
constexpr static const std::array tagNameEnds = {' ', '>'};
|
||||||
constexpr static const std::array attrNameEnds = {' ', '>', '=', '\t', '\r', '\n', '/', '\f'};
|
constexpr static const std::array attrNameEnds = {' ', '>', '=', '\t', '\r', '\n', '/', '\f'};
|
||||||
constexpr static const std::array spaceChars = {' ', '\t', '\r', '\n', '\f'};
|
constexpr static const std::array spaceChars = {' ', '\t', '\r', '\n', '\f'};
|
||||||
|
|
Loading…
Reference in a new issue