Property definitions

dom $ CDATA :: defaultinit
# CDATA are regions in which no xml entity is parsed, all is ignored
class CDATA
	super XMLEntity

	# Any string contained within a CDATA block, may contain XML-reserved characters
	var content: String

	redef fun to_s do return "<![CDATA[{content}]]>"
end
lib/dom/xml_entities.nit:147,1--155,3