return {
main = function(frame)
local f = mw.html.create("div")
f:tag("span")
:css("color", "#66ccff")
:wikitext("Hello world")
:tag("span")
:css("background-color", "#cccccc")
:wikitext("Hi World")
f:wikitext("afterwards")
return tostring(f)
end
}