mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
Replace emoticon images by their textual representation
References #850
This commit is contained in:
parent
6fce03daa7
commit
62d737efe2
@ -114,6 +114,11 @@ EOD;
|
|||||||
$content->find('footer', 0)->innertext = '';
|
$content->find('footer', 0)->innertext = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Replace emoticon images by their textual representation (part of the span)
|
||||||
|
foreach($content->find('span[title*="emoticon"]') as $emoticon) {
|
||||||
|
$emoticon->innertext = $emoticon->find('span[aria-hidden="true"]', 0)->innertext;
|
||||||
|
}
|
||||||
|
|
||||||
//Remove html nodes, keep only img, links, basic formatting
|
//Remove html nodes, keep only img, links, basic formatting
|
||||||
$content = strip_tags($content, '<a><img><i><u><br><p><h3><h4>');
|
$content = strip_tags($content, '<a><img><i><u><br><p><h3><h4>');
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user