domon-treeadapter

A parse5-compatible TreeAdapter for the DOMON format

Usage no npm install needed!

<script type="module">
  import domonTreeadapter from 'https://cdn.skypack.dev/domon-treeadapter';
</script>

README

domon-treeadapter

A parse5-compatible TreeAdapter for the DOMON format

See TreeAdapter at parse5 documentation

The DOMON format is just a lightweight DOM representation with no circular references, making it suitable for JSON etc.

Install

npm install domon-treeadapter

Usage

const parse5 = require( 'parse5' )

const Adapter = require( 'domon-treeadapter' )

// create an adapter instance
const adapter = Adapter()

const domonTree = parse5.parse( '<div></div>', { treeAdapter: adapter } )