View source for Module:HtmlBuilder
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
-- Taken from https://en.wikipedia.org/wiki/Module:HtmlBuilder
-- 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
000
1:0
Templates used on this page:
- Template:Doc begin (view source)
- Template:Tl (view source) (protected)
- Module:HtmlBuilder/doc (view source)
Return to Module:HtmlBuilder.