NoincludeToken (EN) - bhsd-harry/wikiparser-node GitHub Wiki
<noinclude>
when not transcluded, and <includeonly>
or <onlyinclude>
when transcluded. This class inherits all the properties and methods of the NowikiBaseToken class which are not repeated here.
All of the following properties and methods are not available in the Mini and Browser versions.
Expand
returns: this
Deep clone the node.
// cloneNode (main)
var {firstChild} = Parser.parse('</noinclude>');
assert.equal(firstChild, '</noinclude>');
assert.deepStrictEqual(firstChild.cloneNode(), firstChild);