class Phlex::HTML

def doctype

Output an HTML doctype.
def doctype
	context = @_context
	return if context.fragments && !context.in_target_fragment
	context.buffer << "<!doctype html>"
	nil
end