Write data as HTML and set the right content type header.

Property definitions

popcorn :: pop_handlers $ HttpResponse :: html
	# Write data as HTML and set the right content type header.
	fun html(html: nullable Writable, status: nullable Int) do
		header["Content-Type"] = media_types["html"].as(not null)
		send(html, status)
	end
lib/popcorn/pop_handlers.nit:445,2--449,4