پودمان:Pages statistics: تفاوت میان نسخهها
برچسب: خنثیسازی |
بدون خلاصۀ ویرایش |
||
خط ۱: | خط ۱: | ||
local | local div = mw.html.create( 'div' ) | ||
div | |||
:attr( 'id', 'testdiv' ) | |||
:css( 'width', '100%' ) | |||
:wikitext( 'Some text' ) | |||
:tag( 'hr' ) | |||
return | return tostring( div ) | ||
-- Output: <div id="testdiv" style="width:100%;">Some text<hr /></div> |