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).
- 18:37, 15 July 2025 Mnooseman talk contribs created page Module:MarkdownConverter (Created page with "local p = {} -- Main conversion function function p.convert(markdown) if not markdown or markdown == "" then return "" end local text = markdown -- Headers (### -> === ===, ## -> == ==, # -> = =) text = text:gsub("###%s*(.-)%s*\n", "=== %1 ===\n") text = text:gsub("##%s*(.-)%s*\n", "== %1 ==\n") text = text:gsub("#%s*(.-)%s*\n", "= %1 =\n") -- Bold (**text** -> '''text''') text = text:gsub("%*%*(.-)%*%*", "'''%1...")