Main public logs
Appearance
Combined display of all available logs of ClimateKG. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 04:56, 22 May 2026 Laura talk contribs created page Module:GlossaryTerms (Created page with "-- Module:GlossaryTerms -- Processes glossary terms and generates linked pills for display local p = {} -- Trim whitespace from string local function trim(str) return str:match("^%s*(.-)%s*$") end -- Convert term to anchor format (spaces to underscores) local function termToAnchor(term) return trim(term):gsub(" ", "_") end -- Main function to render glossary terms function p.renderTerms(frame) local glossary_page = trim(frame.args.glossary_page or "IPCC:A...") Tag: Recreated
- 04:47, 22 May 2026 Laura talk contribs deleted page Module:GlossaryTerms (content was: "-- Module:GlossaryTerms -- Handles rendering of glossary terms pills dynamically local p = {} function p.main(frame) local termsArg = frame.args['terms'] or '' if termsArg == '' then return '' end -- Split the pipe-separated string into individual terms local terms = {} for term in string.gmatch(termsArg, '([^|]+)') do -- Trim whit...", and the only contributor was "Laura" (talk))
- 12:08, 20 May 2026 Laura talk contribs created page Module:GlossaryTerms (Created page with "-- Module:GlossaryTerms -- Handles rendering of glossary terms pills dynamically local p = {} function p.main(frame) local termsArg = frame.args['terms'] or '' if termsArg == '' then return '' end -- Split the pipe-separated string into individual terms local terms = {} for term in string.gmatch(termsArg, '([^|]+)') do -- Trim whitespace from each term term = mw.text.trim(term) if term ~= '' then...")