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

Module:Test: Difference between revisions

From Kronopolis and the Flat Plane
No edit summary
No edit summary
Line 2: Line 2:


local util = require('Module:Utility')
local util = require('Module:Utility')
local dpl = mw.ext.dpl
 


function p.test(frame)
function p.test(frame)
Line 9: Line 9:
         category='General_Feat'
         category='General_Feat'
     }
     }
     local pages = dpl.getPages(payload)
     local pages = mw.ext.dpl.getPages(payload)
    util.dump(pages)
end
end


return p
return p

Revision as of 10:44, 5 September 2025

Documentation for this module may be created at Module:Test/doc

local p = {}

local util = require('Module:Utility')


function p.test(frame)
    local out = {}
    local payload = {
        category='General_Feat'
    }
    local pages = mw.ext.dpl.getPages(payload)
end

return p