aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Eugene Molotov <em92@users.noreply.github.com> 2021-07-24 00:30:52 +0500
committerGravatar Eugene Molotov <em92@users.noreply.github.com> 2021-07-24 00:39:00 +0500
commit716f5ddc0e20c10cb77ded46380cc376913a92fd (patch)
tree48d34306689cd7bd8a745deecb99629a46a3896d
parent0ee549f46812eb7246ad3f175d13dd8b4e42a214 (diff)
downloadrss-bridge-716f5ddc0e20c10cb77ded46380cc376913a92fd.tar.gz
rss-bridge-716f5ddc0e20c10cb77ded46380cc376913a92fd.tar.zst
rss-bridge-716f5ddc0e20c10cb77ded46380cc376913a92fd.zip
[PikabuBridge] Do not strip strikethrough tags in body content
-rw-r--r--bridges/PikabuBridge.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/PikabuBridge.php b/bridges/PikabuBridge.php
index 5df020f9..671d7a15 100644
--- a/bridges/PikabuBridge.php
+++ b/bridges/PikabuBridge.php
@@ -140,7 +140,7 @@ class PikabuBridge extends BridgeAbstract {
$item['title'] = $title;
$item['content'] = strip_tags(
backgroundToImg($post->find('.story__content-inner', 0)->innertext),
- '<br><p><img><a>
+ '<br><p><img><a><s>
');
$item['uri'] = $title_element->href;
$item['timestamp'] = strtotime($time->getAttribute('datetime'));