...
Code Block | ||
---|---|---|
| ||
enum WikitextMode {
FEED,
LIST,
PAGE,
FORUM_POST,
DIRECT_MESSAGE,
}
function __construct(WikitextMode $mode, PageInfo $pageInfo);
function renderHtml(string $wikitext): HtmlOutput;
function renderText(string $wikitext): TextOutput; |
...