Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 3 |
WrapTemplates | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
run | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
<?php | |
declare( strict_types = 1 ); | |
namespace Wikimedia\Parsoid\Wt2Html\PP\Processors; | |
use Wikimedia\Parsoid\Config\Env; | |
use Wikimedia\Parsoid\DOM\Node; | |
use Wikimedia\Parsoid\Wt2Html\Wt2HtmlDOMProcessor; | |
class WrapTemplates implements Wt2HtmlDOMProcessor { | |
/** | |
* Encapsulate template-affected DOM structures by wrapping text nodes into | |
* spans and adding RDFa attributes to all subtree roots according to | |
* http://www.mediawiki.org/wiki/Parsoid/RDFa_vocabulary#Template_content | |
* @inheritDoc | |
*/ | |
public function run( | |
Env $env, Node $root, array $options = [], bool $atTopLevel = false | |
): void { | |
$op = new DOMRangeBuilder( $root->ownerDocument, $options['frame'] ); | |
$op->execute( $root ); | |
} | |
} |