1.1.2 • Published 6 years ago

@cartok/svg-tag-names v1.1.2

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

svg-tag-names Build Status

List of known SVG tag-names. Includes the elements from SVG 1.1, SVG Tiny 1.2, and SVG 2.

The repo contains a script to crawl specs to include newly introduced tag-names.

Installation

npm:

npm install svg-tag-names

Usage

var svgTagNames = require('svg-tag-names')

console.log(svgTagNames.length) // => 101

console.log(svgTagNames.slice(0, 20))

Yields:

[ 'a',
  'altGlyph',
  'altGlyphDef',
  'altGlyphItem',
  'animate',
  'animateColor',
  'animateMotion',
  'animateTransform',
  'animation',
  'audio',
  'canvas',
  'circle',
  'clipPath',
  'color-profile',
  'cursor',
  'defs',
  'desc',
  'discard',
  'ellipse',
  'feBlend' ]

API

svgTagNames

Array.<string> — List of case-sensitive tag-names.

Related

License

MIT © Titus Wormer