More actions
Combined display of all available logs of Trackmania Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 21:25, 17 September 2025 Skycrafter talk contribs created page Module:TrickValidator (Created page with "local p = {} local requiredSections = { "Description", "Prerequisites", "Execution Steps", "Variations", "See Also" } local function getPageWikitext() local t = mw.title.getCurrentTitle() return t and t:getContent() or nil end local function l2Headings(wikitext) local out = {} if not wikitext then return out end wikitext = "\n" .. wikitext .. "\n" for h in mw.ustring.gmatch(wikitext, "\n==%s*([^=\n][^\n]-)%s*==%s*\n") do table.insert(out, mw.text.trim(h))...")