Main public logs
Jump to navigation
Jump to search
This is a combined display of all logs except the patrol, review, tag and thanks logs: :Who performed the action – enter their name without prefix under "Performer". :The page or user affected by an action – enter the page or user name (prefixed with "User:") under "Target".
- 03:16, 19 December 2021 Tachyony talk contribs created page Module:Icon (Created page with "-- This module implements Template:Icon. require("Module:No globals") local DATA_MODULE = 'Module:Icon/data' local p = {} function p._main(args, data) data = data or mw.loadData(DATA_MODULE) local code = args.class or args[1] local iconData if code then code = code:match('^%s*(.-)%s*$'):lower() -- trim whitespace and put in lower case iconData = data[code] end if not iconData then iconData = data._DEFAULT end return string.format( '[[File:%s%s%s|%s...")