New pages

Jump to navigation Jump to search
New pages
Hide registered users | Hide bots | Show redirects
  • 14:30, 27 March 2025Module:GetArgs (hist | edit) ‎[6,105 bytes]Draculea8302 (talk | contribs) (Created page with "-- Handles most of the boilerplate necessary to fetch arguments, such as trimming leading/trailing whitespace, making blank arguments evaluate to false, correctly choosing between current-frame and parent-frame, etc. Originally written on the English Wikipedia by Mr. Stradivarius, Jackmcbarn, and Anomie. Code released under the GPL v2+ as per: https://en.wikipedia.org/w/index.php?diff=624020648&oldid=624019645 https://en.wikipedia.org/w/index.php?diff=62407379...")
  • 14:29, 27 March 2025Module:Core (hist | edit) ‎[15,884 bytes]Draculea8302 (talk | contribs) (Created page with " local Utils = {} -- * Function functions :V function Utils.id(...) return ... end function Utils.second(_, x) return x end -- * Number functions. function Utils.round(x) return math.floor(x + 0.5) end function Utils.divMod(x, y) return math.floor(x / y), x % y end -- * Collection functions. function Utils.isize(xs) local r = 0 for _ in ipairs(xs) do r = r + 1 end return r end function Utils.size(xs) local r = 0 for _ in pairs(xs) do r = r + 1...")
  • 14:28, 27 March 2025Module:Navbox (hist | edit) ‎[16,365 bytes]Draculea8302 (talk | contribs) (Created page with "-- lua port of Template:Navbox -- by DennouNeko -- == Helper functions == --libraries local U = require("Module:Core") local colors = U.main_colors if mw.text == nil then mw.text = require("Module:MW.text") end -- Retrieve a full list of 'list#', 'list#style', 'group#' and 'group#style' arguments as a table of objects with 'index', 'list', 'liststyle', 'group' and 'groupstyle' fields, where 'index' is the number in 'list#' argument name. On...")
  • 14:28, 27 March 2025Module:Navbox/piece (hist | edit) ‎[16,365 bytes]Draculea8302 (talk | contribs) (Created page with "-- lua port of Template:Navbox -- by DennouNeko -- == Helper functions == --libraries local U = require("Module:Core") local colors = U.main_colors if mw.text == nil then mw.text = require("Module:MW.text") end -- Retrieve a full list of 'list#', 'list#style', 'group#' and 'group#style' arguments as a table of objects with 'index', 'list', 'liststyle', 'group' and 'groupstyle' fields, where 'index' is the number in 'list#' argument name. On...")