24,493 ARTICLES
ON THIS WIKI

Module:Clrl

Lua Logo.svg This is the Lua module for Template:Clrl. Below is the documentation for that template.
Description
This template is a shorthand for <div style="clear:left;"></div>.
It moves any content following the template below any objects floating to the left (TOCs, infoboxes, images, etc..).
Syntax
Type {{clrl}} in an article at the point you want the clear.
See also
{{clr}} and {{clrr}}

local p = {}

local c = require("Module:Clr")

function p.main(frame)
	return c.makeClr("left")
end

return p