Report the start of a CDATA section.

The contents of the CDATA section will be reported through the regular characters event; this event is intended only to report the boundary.

SEE: end_cdata

Property definitions

sax $ LexicalHandler :: start_cdata
	# Report the start of a `CDATA` section.
	#
	# The contents of the `CDATA` section will be reported through
	# the regular `characters` event; this event is intended only to report
	# the boundary.
	#
	# SEE: `end_cdata`
	fun start_cdata do end
lib/sax/ext/lexical_handler.nit:137,2--144,23

saxophonit $ SAXEventLogger :: start_cdata
	redef fun start_cdata do
		log.push(["start_cdata"])
		if lexical_handler != null then
			lexical_handler.start_cdata
		end
	end
lib/saxophonit/testing.nit:509,2--514,4