Jump to content

Module:CP

Revision as of 01:57, 24 May 2025 by Abhishek.it (talk | contribs) (Created page with "-- Module:CP — for shorthand reference to Chabadpedia local export = {} export.site = 'Chabadpedia' export.lang = 'en' -- or 'en' if your Chabadpedia is in English export.project = 'chabadpedia' export.link = function(page) return string.format('%s', page) end return export")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

-- Module:CP — for shorthand reference to Chabadpedia

local export = {}

export.site = 'Chabadpedia'
export.lang = 'en'  -- or 'en' if your Chabadpedia is in English
export.project = 'chabadpedia'
export.link = function(page)
    return string.format('[[%s]]', page)
end

return export