FastFeed\Processor\RemoveStylesProcessor::removeStyle PHP Method

removeStyle() public method

public removeStyle ( Item $item ) : Item
$item FastFeed\Item
return FastFeed\Item
    public function removeStyle(Item $item)
    {
        $item->setIntro(preg_replace('/(<[^>]+) style=".*?"/i', '$1', $item->getIntro()));
        $item->setContent(preg_replace('/(<[^>]+) style=".*?"/i', '$1', $item->getContent()));
        return $item;
    }
RemoveStylesProcessor