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