mediawiki-extensions-Scribunto/includes/engines/LuaCommon/HtmlLibrary.php

12 lines
333 B
PHP
Raw Normal View History

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