/svg-tag-names

List of known SVG tag-names

Primary LanguageJavaScriptMIT LicenseMIT

svg-tag-names Build Status Coverage 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');

svgTagNames.length; //=> 100

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.

License

MIT © Titus Wormer