class Phlex::SGML

def __text__(content)

Other tags:
    Api: - private
def __text__(content)
	case content
	when String
		@_context.target << ERB::Escape.html_escape(content)
	when Symbol
		@_context.target << ERB::Escape.html_escape(content.name)
	when nil
		nil
	else
		if (formatted_object = format_object(content))
			@_context.target << ERB::Escape.html_escape(formatted_object)
		else
			return false
		end
	end
	true
end