hast-util-to-parse5

Transform HAST to Parse5’s AST.
Why not use an adapter? Because it’s more code weight to use adapters, and much more fragile.
Installation
npm:
npm install hast-util-to-parse5
Usage
var toParse5 = require('hast-util-to-parse5')
var ast = toParse5({
type: 'element',
tagName: 'h1',
properties: {},
children: [{type: 'text', value: 'World!'}]
})
console.log(ast)
Yields:
{ nodeName: 'h1',
tagName: 'h1',
attrs: [],
namespaceURI: 'http://www.w3.org/1999/xhtml',
childNodes: [ { nodeName: '#text', value: 'World!', parentNode: [Circular] } ] }
API
toParse5(tree[, space])
Transform a HAST Node to an ASTNode according to the default
Parse5 adapter.
space
Whether the root of the given tree is in the 'html' or 'svg' space (enum,
'svg' or 'html', default: 'html').
If an svg element is found in the HTML space, toParse5 automatically
switches to the SVG space when entering the element, and switches back when
leaving.
Contribute
See contributing.md in syntax-tree/hast for ways to get
started.
This organisation has a Code of Conduct. By interacting with this repository, organisation, or community you agree to abide by its terms.