Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CDATASection

A CDATA section that can be used within XML to include extended portions of unescaped text. The symbols < and & don’t need escaping as they normally do when inside a CDATA section.

interface CDATASection extends Text {}
var CDATASection: {
prototype: CDATASection;
new (): CDATASection;
}
;