Module:HtmlBuilder: Revision history

Jump to navigation Jump to search

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.

17 July 2025

  • curprev 16:3016:30, 17 July 2025 Randombell talk contribs m 4,270 bytes 0 1 revision imported
  • curprev 12:0112:01, 17 July 2025 Randombell talk contribs 4,270 bytes +4,270 Created page with "-- Module for building complex HTML (e.g. infoboxes, navboxes) using a fluent interface. local HtmlBuilder = {} local metatable = {} metatable.__index = function(t, key) local ret = rawget(t, key) if ret then return ret end ret = metatable[key] if type(ret) == 'function' then return function(...) return ret(t, ...) end else return ret end end metatable.__tostring = function(t) local..." Tag: Recreated

23 April 2016