Jump to content

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

4 June 2026

  • curprev 03:0303:03, 4 June 2026 Oros talk contribs 937 bytes +937 Created page with "local p = {} local function trim(s) return mw.text.trim(s or "") end function p.render(frame) local args = frame.args local items = args.items or args[1] or "" if trim(items) == "" then return "" end local output = {} table.insert(output, '<gallery mode="slideshow">') for line in mw.text.gsplit(items, "\n", true) do line = trim(line) if line ~= "" then local filename, caption = line:match("^(.-)%s*::%s*(.*)$") if filename then filename = tr..."