postsvg
A tiny wrapper over posthml with the same API optimized for working with SVG
Last updated 7 years ago by kisenka .
MIT · Repository · Bugs · Original npm
$ cnpm install postsvg 
SYNC missed versions from official npm registry.

PostSVG

A tiny wrapper over posthtml with the same API optimized for working with SVG.

Differences from PostHTML

  • Content is parsed in xml mode.
  • Properly renders SVG self-closing tags (<path />, <line /> etc).
  • Processing result is instance of Tree class which is wrapper around Array and backward compatible with posthtml parser.

Tree

PostSVG tree has several useful methods for work with AST:

const { parse } = require('postsvg');

const tree = parse('<svg><path /><path class="qwe" /></svg>');

/**
 * `root` getter returns <svg> node
 * @return {Node}
 */ 
tree.root;

/**
 * Find all <path/> nodes
 * @return {Array<Node>}
 */
tree.select('path'); 

/**
 * Select only nodes with class="qwe"
 * @return {Array<Node>}
 */
tree.select('.qwe');

/**
 * Fill each <path/> node with red color 
 */
tree.each('path', node => node.attrs.fill = 'red');

Node has following structure:

Node<{
  tag: string,
  attrs?: Object,
  content?: Array<Node>
}>

LICENSE

MIT

Current Tags

  • 2.1.2-alpha.0                                ...           alpha (7 years ago)
  • 2.2.0-alpha.10475b37                                ...           canary (7 years ago)
  • 2.2.7                                ...           latest (7 years ago)

3 Versions

  • 2.2.0-alpha.10475b37                                ...           7 years ago
  • 2.1.2-alpha.0                                ...           7 years ago
  • 2.2.7                                ...           7 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (6)
Dev Dependencies (0)
None
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org