Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Replace: Revision history

From Vault Hunters Official Wiki

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.

28 June 2025

  • curprev 07:4607:46, 28 June 2025 Mnooseman talk contribs 470 bytes +470 Created page with "local p = {} function p.replace( f ) local raw_args = f:getParent().args local args = require("Module:ProcessArgs").norm(raw_args) local text = args[1] or '' if text == '' then return text end -- loop through raw args so we keep empty replacements (like `|str=`) intact for k, v in pairs(raw_args) do if k ~= 1 then local value = args[k] or '' -- get normalised arg value text = text:gsub(k, value) end end return text end return p"