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

Module:Deformat: Revision history

From Trackmania 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.

20 August 2025

  • curprev 22:2722:27, 20 August 2025Skycrafter talk contribs 454 bytes −190 No edit summary undo
  • curprev 22:1222:12, 20 August 2025Skycrafter talk contribs 644 bytes +43 No edit summary undo
  • curprev 22:0822:08, 20 August 2025Skycrafter talk contribs 601 bytes +601 Created page with "-- Function: Removes dollar-sign based formatting codes from a string. local p = {} function p.run(frame) -- Get the input text from the first argument of the template call. -- Defaults to an empty string if no argument is provided. local text = frame.args[1] or '' -- Pattern: \$(?:(\$)|[0-9a-fA-F]{2,3}|[lh]\[.*?\]|[lh]\[|.) local pattern = '\\$(?:(\\$)|\\[0-9a-fA-F]{2,3}|\\[lh]\\[.*?\\]|\\[lh]\\[|.)' -- Replace every match of the pattern..."