diff --git a/bridges/FreeCodeCampBridge.php b/bridges/FreeCodeCampBridge.php new file mode 100644 index 00000000..da0b5c7d --- /dev/null +++ b/bridges/FreeCodeCampBridge.php @@ -0,0 +1,27 @@ +collectExpandableDatas('https://www.freecodecamp.org/news/rss/', 15); + } + + protected function parseItem($newsItem){ + $item = parent::parseItem($newsItem); + // $articlePage gets the entire page's contents + $articlePage = getSimpleHTMLDOM($newsItem->link); + // figure contain's the main article image + $article = $articlePage->find('figure', 0); + // the actual article + foreach($articlePage->find('.post-full-content') as $element) + $article = $article . $element; + $item['content'] = $article; + return $item; + } +}