From 62d737efe21b5d89a4b7feea54fd407531c8e61a Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Tue, 16 Oct 2018 19:02:47 +0200 Subject: [PATCH] Replace emoticon images by their textual representation References #850 --- bridges/FB2Bridge.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bridges/FB2Bridge.php b/bridges/FB2Bridge.php index 8607cf50..cd4bb47f 100644 --- a/bridges/FB2Bridge.php +++ b/bridges/FB2Bridge.php @@ -114,6 +114,11 @@ EOD; $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 $content = strip_tags($content, '

');