Jump to content

This site is currently in alpha, so you will run into rough edges.

Please send feedback or ideas to connect@deeptech.wiki

Main public logs

Combined display of all available logs of The Deep Tech Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 14:11, 12 November 2025 C talk contribs created page Module:ListUtils (Created page with "-- Module:ListUtils local p = {} -- Helper: trim whitespace local function trim(s) if not s then return '' end return (mw.ustring.gsub(s, '^%s*(.-)%s*$', '%1')) end -- Helper: is already a wikilink like Foo or Bar local function isLinked(s) return mw.ustring.match(s, '%[%[') ~= nil end -- Helper: strip existing ... to normalize before relinking local function stripLinks(s) s = mw.ustring.gsub(s, '%[%[', '') s = mw.ustring.gsub(s, '%]%]', '') retu...")