Main public logs
Combined display of all available logs of Kernel Info. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 14:59, 21 August 2025 Scottviger talk contribs created page Module:DisplayStruct (Created page with "-- Module:DisplayStruct -- This module parses a C-like struct definition and generates a wikitext table. local p = {} -- Helper function to parse a single line of the struct definition local function parseLine(line, version, frame) -- Trim whitespace line = mw.text.trim(line) -- Ignore empty lines or lines that are just "{" or "}" if line == "" or line == "{" or line == "};" then return nil end -- Handle #endif if line:match("^#end...")