Main public logs
Appearance
This shows all the logs of Wikipedia. You can also view logs by log type, the user making the log, or the affected page or user.
- "User" - This is the person who made the action. It does not use the "User:" prefix ( JohnDoe, not User:JohnDoe ).
- "Title" - The page or user affected by an action. The username uses the "User:" prefix ( User:JohnDoe, not JohnDoe ). Page names use the full title of the page. (for example, "Wikipedia talk:Userboxes" )
- 17:14, 6 August 2021 MeritedElm63160 talk changes created page Module:Wikitable (Created page with "local p = {}; local getArgs = require('Module:Arguments').getArgs local buffer = require("Module:Buffer")('{|') function p.main(frame) local args = getArgs(frame, {removeBlanks=false, trim=false} ) for k, v in pairs(args) do if type(k) ~= 'number' then buffer:_(string.format(string.match(v, '^["\']') and ' %s=%s' or ' %s="%s"', k, v)) end end buffer:_'\n' for _, v in ipairs(args) do if not string.match(v, '^!') then buffer:_'|' end buffer:_(v) end return ta...")