0.1.3 • Published 8 years ago

domon-treeadapter v0.1.3

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

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 } )