class Phlex::SGML

def raw(content)

Output the given safe object as-is. You may need to use `safe` to mark a string as a safe object.
def raw(content)
	case content
	when Phlex::SGML::SafeObject
		context = @_context
		return if context.fragments && !context.in_target_fragment
		context.buffer << content.to_s
	when nil, "" # do nothing
	else
		raise Phlex::ArgumentError.new("You passed an unsafe object to `raw`.")
	end
	nil
end