mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-03 20:36:18 +00:00
1fad4da137
Change-Id: Ida2c9cac348fe31ecf8d8c0a352e899bcbff1ebf
12 lines
333 B
PHP
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,
|
|
] );
|
|
}
|
|
}
|