Module:Aside: 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.

9 September 2024

  • curprev 01:3501:35, 9 September 2024Maria talk contribs 466 bytes +8 No edit summary
  • curprev 01:3301:33, 9 September 2024Maria talk contribs 458 bytes +458 Created page with "local p = {} function p.show(frame) local args = frame:getParent().args local pieces = {} for _, a_full in ipairs(args) do a_delim = mw.ustring.find(":") if a_delim then a_pre = mw.ustring.sub(a_full, 1, a_delim - 1) a_post = mw.ustring.sub(a_full, a_delim + 1) table.insert(pieces, "<small>" .. a_pre .. ":</small> " .. a_post) else table.insert(pieces, a_full) end end return "(" .. table.concat(pieces, ", ") .. ")" end return p"