xmlua.CDATASection
classIt's a class for cdata section node. Normaly, you can get cdata section object by xmlua.Document:create_cdata_section
.
Example:
local xmlua = require("xmlua")
local document = xmlua.XML.build({"root"})
local cdata_section_node = -- -> xmlua.CDATASection
document:create_cdata_section("This is <CDATA>")
It has methods of the following modules:
xmlua.Node
: Provides common methods of each nodes.It means that you can use methods in the modules.
There are no methods specific to this class.
xmlua.Document
: The class for HTML document and XML document.
xmlua.Node
: Provides common methods of each nodes.