Jump to content

Module:Pagination/sandbox: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Codemini (talk | contribs)
Checking the status of this
Codemini (talk | contribs)
No edit summary
Line 1: Line 1:
local p = {}
local p = {}


local mPagination = require('Module:Pagination').pagination{ args[1] == 'CSS', args[2] == 'HTML' }
local mPagination = require('Module:Pagination').pagination(args){ args[1] == 'CSS', args[2] == 'HTML' }


function p.main(frame, args, mPagination)
function p.main(frame, args, mPagination)

Revision as of 20:12, 29 May 2025

local p = {}

local mPagination = require('Module:Pagination').pagination(args){ args[1] == 'CSS', args[2] == 'HTML' }

function p.main(frame, args, mPagination)
 return mPagination
end

return p