RuneScape Wiki
Advertisement

Documentation for this module may be created at Module:Sandbox/doc

-- <nowiki>
--
-- Sandbox module
--
-- To be used to test out ideas in the same way [[RuneScape:Sandbox]] is used
--

local p = {}

function p.list()
    local ul = mw.html.create( 'ul' )
        :tag( 'li' )
            :wikitext( 'foo' )
            :done()
        :tag( 'li' )
            :wikitext( 'bar' )
            :done()
    return tostring( ul )
end

return p
Advertisement