Module:URL: Revision history

From PS:1 Wiki Dev
Jump to navigationJump to search

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.

2 December 2025

  • curprev 00:0400:04, 2 December 2025 Rubin110 talk contribs 793 bytes +793 Created page with "local p = {} function p.url(frame) local args = frame:getParent().args local url = args[1] or '' local display = args[2] or '' if url == '' then return '' end -- Trim whitespace url = mw.text.trim(url) -- Add https:// if no protocol specified local fullUrl = url if not string.match(url, '^https?://') then fullUrl = 'https://' .. url end -- If no display text provided, strip protocol for..."