All Projects → alexmingoia → virtual-dom-stringify

alexmingoia / virtual-dom-stringify

Licence: other
Deprecated. Use https://github.com/nthtran/vdom-to-html/.

Programming Languages

javascript
184084 projects - #8 most used programming language
Handlebars
879 projects
HTML
75241 projects

virtual-dom-stringify

NPM version NPM Downloads Build Status Tips

Stringify virtual-dom trees into HTML. For parsing DOM nodes into a virtual-dom tree use vnode-virtualize.

Deprecated

This module is deprecated. Use vdom-to-html.

Installation

Using npm:

npm install --save virtual-dom-stringify

Using bower:

bower install --save virtual-dom-stringify

API Reference

module.exports(node, parent, [options]) ⇒ String

Stringify given virtual dom tree and return html.

Kind: Exported function

Param Type Description
node VirtualNode
parent VirtualNode
[options] Object
[options.selfClosingTags] Array.<String> tags that are self-closing
[options.attributes] Object.<String, String> map of attribute names where keys are camelCased name and values are the HTML attribute name.
[options.asciiSafe] Boolean encode non-ASCII symbols (default: false)

Example

var VirtualNode = require('vtree/vnode');
var stringify = require('virtual-dom-stringify');

stringify(new VirtualNode('div'));
// => "<div></div>"

Contributing

Please submit all issues and pull requests to the alexmingoia/virtual-dom-stringify repository!

Tests

Run tests using npm test.

Support

If you have any problem or suggestion please open an issue here.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].