Fix typo preventing canonicalization.
[xhtml-compiler.git] / XHTMLCompiler / TextFilter.php
blob00f5d172ccf98ea6661a37f65f808379b8d395fc
1 <?php
3 /**
4 * Represents a filter that performs processing on documents. Read-only.
5 */
6 abstract class XHTMLCompiler_TextFilter extends XHTMLCompiler_Filter
9 /**
10 * Defines a filter that processes string text.
11 * @param $text String text to process
12 * @param $page XHTMLCompiler_Page object representing the context
13 * @param $manager Currently running XHTMLCompiler_FilterManager
14 * @return Processed string text
15 * @note These filters should be used sparingly, only when a DOM
16 * solution would not work.
18 abstract public function process($text, $page, $manager);