mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-15 11:59:42 +00:00
55bd9d22bb
Change-Id: I2efe0f71266d70e9a41e044406d82ef7daa31296
11 lines
268 B
PHP
11 lines
268 B
PHP
<?php
|
|
|
|
class Scribunto_LuaHtmlLibrary extends Scribunto_LuaLibraryBase {
|
|
public function register() {
|
|
return $this->getEngine()->registerInterface( 'mw.html.lua', [], [
|
|
'uniqPrefix' => Parser::MARKER_PREFIX,
|
|
'uniqSuffix' => Parser::MARKER_SUFFIX,
|
|
] );
|
|
}
|
|
}
|