Modul:TestTabs: Unterschied zwischen den Versionen

keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 6: Zeile 6:


p.helloWorld = function()
p.helloWorld = function()
local details = mw.html.create( 'details' )
return '{{#widget:TestTabs}}'
details
    :attr( 'id', 'testdiv' )
    :css( 'width', '100%' )
    :wikitext( 'Some text' )
    :tag( 'hr' )
return tostring( details )
-- Output: <div id="testdiv" style="width:100%;">Some text<hr /></div>
end
end