mirror of
https://github.com/there4/markdown-resume.git
synced 2024-12-03 08:59:35 -05:00
Update to use sunra/php-simple-html-dom-parser
Remove the simple-html-dom parser that relies on an outdated repo. This appears to be the most popular repo for the dom library.
This commit is contained in:
@@ -11,6 +11,7 @@ use Assetic\Asset\FileAsset;
|
||||
use Assetic\Filter;
|
||||
use Michelf\MarkdownExtra;
|
||||
use Michelf\SmartyPants;
|
||||
use Sunra\PhpSimple\HtmlDomParser;
|
||||
|
||||
class HtmlCommand extends Command
|
||||
{
|
||||
@@ -113,8 +114,7 @@ class HtmlCommand extends Command
|
||||
$resumeHtml = SmartyPants::defaultTransform($resumeHtml);
|
||||
|
||||
// Construct the title for the html document from the h1 and h2 tags
|
||||
$simpleDom = new \simple_html_dom();
|
||||
$simpleDom->load($resumeHtml);
|
||||
$simpleDom = HtmlDomParser::str_get_html($resumeHtml);
|
||||
$title = sprintf(
|
||||
'%s | %s',
|
||||
$simpleDom->find('h1', 0)->innertext,
|
||||
|
||||
Reference in New Issue
Block a user