All public logs

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

Logs
  • 22:15, 16 July 2024 Rman41 talk contribs created page Module:Sandbox (Created page with "local getArgument = require('Module:Arguments').getArgument local p = {} function trim(s) -- Allows removing of whitespace and line breaks from inputs; adapted from (https://www.lua.org/manual/2.4/node32.html) local l = 1 while string.sub(s,l,l) == ' ' do l = l+1 end while string.sub(s,l,l+1) == '\n' do l = l+2 end local r = string.len(s) while string.sub(s,r,r) == ' ' do r = r-1 end while string.sub(s,r,r-1) == '\n' do r = r-2 end return string.sub(s,l,...")