mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-11 16:06:02 +00:00
db8f22c1d4
Changes to the use statements done automatically via script Change-Id: Iedad37d75aee4d2a6960ab20148f813c6cf7061a
15 lines
332 B
PHP
15 lines
332 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Scribunto\Engines\LuaCommon;
|
|
|
|
use MediaWiki\Parser\Parser;
|
|
|
|
class HtmlLibrary extends LibraryBase {
|
|
public function register() {
|
|
return $this->getEngine()->registerInterface( 'mw.html.lua', [], [
|
|
'uniqPrefix' => Parser::MARKER_PREFIX,
|
|
'uniqSuffix' => Parser::MARKER_SUFFIX,
|
|
] );
|
|
}
|
|
}
|