MediaWiki  master
TidyDriverBase.php
Go to the documentation of this file.
1 <?php
2 
3 namespace MediaWiki\Tidy;
4 
8 abstract class TidyDriverBase {
9  protected $config;
10 
11  public function __construct( $config ) {
12  $this->config = $config;
13  }
14 
25  abstract public function tidy( $text, ?callable $textProcessor = null );
26 }
Base class for HTML cleanup utilities.
tidy( $text, ?callable $textProcessor=null)
Clean up HTML.