Open a html tag

open("ul")
add("li").text("item1")
add("li").text("item2")
close("ul")

Property definitions

html $ HTMLPage :: open
	# Open a html tag
	#
	# ~~~nitish
	# open("ul")
	# add("li").text("item1")
	# add("li").text("item2")
	# close("ul")
	# ~~~
	fun open(tag: String): HTMLTag do
		stack.push(current)
		current = add(tag)
		return current
	end
lib/html/html.nit:76,2--88,4