summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Scribunto/includes/engines/LuaCommon/HtmlLibrary.php
blob: 00716ca8e07285122f3863f217748ebd2392a119 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

// @codingStandardsIgnoreLine Squiz.Classes.ValidClassName.NotCamelCaps
class Scribunto_LuaHtmlLibrary extends Scribunto_LuaLibraryBase {
	function register() {
		return $this->getEngine()->registerInterface( 'mw.html.lua', [], [
			'uniqPrefix' => Parser::MARKER_PREFIX,
			'uniqSuffix' => Parser::MARKER_SUFFIX,
		] );
	}
}