All public logs

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

Logs
  • 09:57, 23 September 2025 HyperNervie talk contribs created page Module:Media table (Created page with "local p = {} local function matchExtension(fn, ext) fn = mw.ustring.lower(fn) ext = "." .. mw.ustring.lower(ext) return mw.ustring.sub(fn, -#ext) == ext end local function mediaType(filename) local extensions = {"mkv", "mov", "mp4", "ogv", "webm"} for _, ext in ipairs(extensions) do if matchExtension(filename, ext) then return "Video" end end return "Audio" end function p.makeTable(args) local html = mw.html.create("table") :addClass("wikitable") :addCla...")