Replace emoticon images by their textual representation
References #850
This commit is contained in:
parent
6fce03daa7
commit
62d737efe2
1 changed files with 5 additions and 0 deletions
|
@ -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 a new issue