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

Module:MarkdownConverter: Revision history

From Vault Hunters Official Wiki

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

15 July 2025

  • curprev 18:3718:37, 15 July 2025 Mnooseman talk contribs 3,923 bytes +3,923 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..."