Append a new field in the popuped infobox

Property definitions

nitc $ HInfoBox :: new_field
	# Append a new field in the popuped infobox
	fun new_field(title: String): HTMLTag
	do
		content.open("b").text(title)
		content.append(" ")
		var res = content.open("span")
		content.open("br")
		return res
	end
src/htmlight.nit:390,2--398,4