Module:Ul: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

13 June 2024

  • curprev 09:0909:09, 13 June 2024176.40.36.35 talk 431 bytes +431 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"