xmlua.CDATASection class

Summary

It'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:

It means that you can use methods in the modules.

Instance methods

There are no methods specific to this class.

See also