All public logs

Combined display of all available logs of Forsaken Saga Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 09:09, 13 June 2024 176.40.36.35 talk created page Module:Ul (Created page with "local getArgs = require('Module:Arguments').getArgs local p = {} function p.main(frame) local args = getArgs(frame) local class = args['class'] local style = args['style'] local ul = mw.html.create('ul') if class ~= nil then ul:addClass(class) end if class ~= nil then ul:cssText(style) end for _, v in ipairs(args) do if v then ul:tag('li'):wikitext(v) end end return tostring(ul) end return p")