Jump to content

Module:Pagination/sandbox: Difference between revisions

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


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


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

Revision as of 18:45, 29 May 2025

local p = {}

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

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

return p