nitcorn :: 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