Revert "remove useless code"

This reverts commit a9308fe161.
This commit is contained in:
quenousimporte 2024-09-02 18:22:50 +02:00
parent a9308fe161
commit 62b7ae5a8e
1 changed files with 17 additions and 0 deletions

View File

@ -41,6 +41,23 @@
$date = trim($finder->query('//time')->item(1)->textContent); $date = trim($finder->query('//time')->item(1)->textContent);
$summary = $finder->query('//p[contains(@class, "news__heading__top__intro")]')->item(0)->textContent; $summary = $finder->query('//p[contains(@class, "news__heading__top__intro")]')->item(0)->textContent;
// strip images
$toremove = $finder->query('//svg');
foreach ($toremove as $elt)
{
$elt->parentNode->removeChild($elt);
}
$toremove = $finder->query('//figure');
foreach ($toremove as $elt)
{
$elt->parentNode->removeChild($elt);
}
$toremove = $finder->query('//span[@class="screen-reader-only"]');
foreach ($toremove as $elt)
{
$elt->parentNode->removeChild($elt);
}
$result = '<h1>' . $title . '</h1>'; $result = '<h1>' . $title . '</h1>';
$result .= '<p>' . $author . '</p>'; $result .= '<p>' . $author . '</p>';
$result .= '<p>' . $date . '</p>'; $result .= '<p>' . $date . '</p>';