Difference between revisions of "Module:Page reports"
MyWikiBiz, Author Your Legacy — Saturday October 11, 2025
Jump to navigationJump to search (Pywikibot 6.4.0) |
(No difference)
|
Latest revision as of 05:16, 16 July 2021
Documentation for this module may be created at Module:Page reports/doc
--In development. See Template:Page reports. local p = {}; function p.demo( frame ) local origArgs if frame == mw.getCurrentFrame() then origArgs = frame:getParent().args for k, v in pairs( frame.args ) do origArgs = frame.args break end else origArgs = frame end return "hello world" .. origArgs[1] end return p