Skip to content

Latest commit

 

History

History
42 lines (24 loc) · 910 Bytes

cdata-section.md

File metadata and controls

42 lines (24 loc) · 910 Bytes
title
xmlua.CDATASection

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:

  • xmlua.Node: Provides common methods of each nodes.

It means that you can use methods in the modules.

Instance methods

There are no methods specific to this class.

See also