xmlua.DocumentFragment class

Summary

It's a class for document fragment node.

Normaly, you can get document fragment object by xmlua.Document:create_document_fragment.

Example:

local xmlua = require("xmlua")

local document = xmlua.XML.build({"root"})
local document_fragment_node = -- -> xmlua.DocumentFragment
  document:create_document_fragment()

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