mediawiki-extensions-Scribunto/includes/engines/LuaCommon/HtmlLibrary.php
Kunal Mehta 1fad4da137 Move classes into includes/
Change-Id: Ida2c9cac348fe31ecf8d8c0a352e899bcbff1ebf
2018-04-09 08:54:22 -07:00

12 lines
333 B
PHP

<?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,
] );
}
}