Module:Documentation: Difference between revisions

From the Croc Wiki, the Croc encyclopedia
Jump to navigationJump to search
Content added Content deleted
m (local optimisation; there's still a bug locating the correct docTitle (currently points to this module instead of the /doc page))
(move remaining inline CSS to TemplateStyles)
Line 82: Line 82:
ret[#ret + 1] = select(i, ...)
ret[#ret + 1] = select(i, ...)
end
end
return '<small style="font-style:normal">(' .. table.concat(ret, ' &#124; ') .. ')</small>'
return '<small>(' .. table.concat(ret, ' &#124; ') .. ')</small>'
end
end


Line 397: Line 397:
omargs.text = text
omargs.text = text
omargs.class = message('sandbox-class')
omargs.class = message('sandbox-class')
return messageBox.main('ombox', omargs)
local ret = '<div style="clear:both"></div>'
ret = ret .. messageBox.main('ombox', omargs)
return ret
end
end