summaryrefslogtreecommitdiff
path: root/src/HTML5/Parser.php
blob: d53051c68eff9d84e5a5abeb292e077b3ded77a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
namespace HTML5;

/**
 * Outwards facing API for HTML5.
 */
class Parser
{
    /**
     * Parses a full HTML document.
     * @param $text HTML text to parse
     * @param $builder Custom builder implementation
     * @return Parsed HTML as DOMDocument
     */
    public static function parse($text, $builder = null) {
        $tokenizer = new Tokenizer($text, $builder);
        $tokenizer->parse();
        return $tokenizer->save();
    }
    /**
     * Parses an HTML fragment.
     * @param $text HTML text to parse
     * @param $context String name of context element to pretend parsing is in.
     * @param $builder Custom builder implementation
     * @return Parsed HTML as DOMDocument
     */
    public static function parseFragment($text, $context = null, $builder = null) {
        $tokenizer = new Tokenizer($text, $builder);
        $tokenizer->parseFragment($context);
        return $tokenizer->save();
    }

}