...
Code Block | ||
---|---|---|
| ||
enum WikitextMode {
FEED,
MODULE,
PAGE,
FORUM_POST,
DIRECT_MESSAGE,
}
function __construct(WikitextMode $mode);
function renderHtml(string $wikitext): HtmlOutput;
function renderText(string $wikitext): TextOutput; |
The WikiTransformation::purifyHtml
static method will be moved to a new HTML utility class.
...