Module:PageType: Revision history

From IdleOn MMO Wiki

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

12 June 2024

  • curprev 06:4306:43, 12 June 2024Nads talk contribs 1,017 bytes +1,017 Created page with "require('strict') --- Contains special naming rules for the thing. local PAGE_TYPES = { [''] = 'article', ['File'] = 'image', ['Category'] = 'category', ['Template'] = 'template', ['Module'] = 'module', ['IdleOn'] = 'project page', } local p = {} --- Entry point for use by templates. --- @param frame table The frame object provided by the template. --- @return string pageType The page type function p.main(frame) return p._main(frame.args[1]) end --- Entry poin..."