Apply user-fixes.
This commit is contained in:
parent
27ac10b821
commit
e1a973f11f
|
@ -133,7 +133,17 @@ void Document::parse_rss(const pt::ptree &tree)
|
||||||
}
|
}
|
||||||
|
|
||||||
Item item;
|
Item item;
|
||||||
item.description = remove_html(rssitem.get<string>("description"));
|
item.description =
|
||||||
|
[&]
|
||||||
|
{
|
||||||
|
string desc =
|
||||||
|
remove_html(rssitem.get<string>("description"));
|
||||||
|
for (const auto &fix : _data.fixes)
|
||||||
|
{
|
||||||
|
desc = regex_replace(desc, regex{fix}, "");
|
||||||
|
}
|
||||||
|
return desc;
|
||||||
|
}();
|
||||||
item.guid = move(guid);
|
item.guid = move(guid);
|
||||||
item.link = rssitem.get<string>("link");
|
item.link = rssitem.get<string>("link");
|
||||||
item.title = move(title);
|
item.title = move(title);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user