summaryrefslogtreecommitdiff
path: root/src/HTML5.php
blob: a6a057c774a4da306aee6b91235d22c1e4eb27ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

/**
 * The main HTML5 front end.
 *
 * This class offers convenience methods for parsing and serializing HTML5.
 */
class HTML5 extends \HTML5\Parser {
  // Inherit parse() and parseFragment().

  /**
   * Write the HTML5 to a string.
   */
  public static function write($dom) {
  }
}