Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Main public logs

More actions

Combined display of all available logs of Vault Hunters Official 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:51, 24 July 2025 Mnooseman talk contribs created page Module:MarkdownToWikitext (Created page with "local p = {} -- Escape special wikitext characters local function escapeWikitext(text) if not text then return "" end -- Escape wikitext special characters text = text:gsub("([%[%]{}|=])", "\\%1") return text end -- Convert headers local function convertHeaders(text) -- Convert ATX headers (# Header) text = text:gsub("^(#+)%s*(.-)%s*#*$", function(hashes, content) local level = #hashes if level > 6 then level = 6 end loca...")