https://github.com/jonschlinkert/self-closing-tags
HTML void elements are not the only self-closing tags. This includes common SVG self-closing elements as well.
https://github.com/jonschlinkert/self-closing-tags
closing closing-element closing-tags html html-element void-elements
Last synced: 10 months ago
JSON representation
HTML void elements are not the only self-closing tags. This includes common SVG self-closing elements as well.
- Host: GitHub
- URL: https://github.com/jonschlinkert/self-closing-tags
- Owner: jonschlinkert
- License: mit
- Created: 2017-01-21T08:42:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-30T14:24:12.000Z (over 8 years ago)
- Last Synced: 2025-04-13T00:35:48.864Z (about 1 year ago)
- Topics: closing, closing-element, closing-tags, html, html-element, void-elements
- Language: JavaScript
- Size: 8.79 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: .github/contributing.md
- License: LICENSE
Awesome Lists containing this project
README
# self-closing-tags [](https://www.npmjs.com/package/self-closing-tags) [](https://npmjs.org/package/self-closing-tags) [](https://npmjs.org/package/self-closing-tags) [](https://travis-ci.org/jonschlinkert/self-closing-tags)
> HTML void elements are not the only self-closing tags. This includes common SVG self-closing elements as well.
Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
## Install
Install with [npm](https://www.npmjs.com/):
```sh
$ npm install --save self-closing-tags
```
## Usage
Please [create an issue](../../issues) or do a pull request to add addtional SVG self-closing elements, thanks!
```js
var selfClosingTags = require('self-closing-tags');
```
**Void elements only**
```js
var voidElements = require('self-closing-tags').voidElements;
```
**SVG self-closing elements only**
```js
var svgElements = require('self-closing-tags').svgElements;
```
## About
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
Please read the [contributing guide](.github/contributing.md) for advice on opening issues, pull requests, and coding standards.
Running Tests
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
```sh
$ npm install && npm test
```
Building docs
_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
To generate the readme, run the following command:
```sh
$ npm install -g verbose/verb#dev verb-generate-readme && verb
```
### Related projects
You might also be interested in these projects:
* [breakdance](https://www.npmjs.com/package/breakdance): Breakdance is a node.js library for converting HTML to markdown. Highly pluggable, flexible and easy… [more](http://breakdance.io) | [homepage](http://breakdance.io "Breakdance is a node.js library for converting HTML to markdown. Highly pluggable, flexible and easy to use. It's time for your markup to get down.")
* [html-tag](https://www.npmjs.com/package/html-tag): Generate HTML elements from a javascript object. | [homepage](https://github.com/jonschlinkert/html-tag "Generate HTML elements from a javascript object.")
* [html-toc](https://www.npmjs.com/package/html-toc): Generate a HTML table of contents using cheerio. | [homepage](https://github.com/jonschlinkert/html-toc "Generate a HTML table of contents using cheerio.")
* [is-self-closing](https://www.npmjs.com/package/is-self-closing): Returns true if the given name is a HTML void element or common SVG self-closing… [more](https://github.com/jonschlinkert/is-self-closing) | [homepage](https://github.com/jonschlinkert/is-self-closing "Returns true if the given name is a HTML void element or common SVG self-closing element.")
* [remarkable](https://www.npmjs.com/package/remarkable): Markdown parser, done right. 100% Commonmark support, extensions, syntax plugins, high speed - all in… [more](https://github.com/jonschlinkert/remarkable) | [homepage](https://github.com/jonschlinkert/remarkable "Markdown parser, done right. 100% Commonmark support, extensions, syntax plugins, high speed - all in one.")
### Author
**Jon Schlinkert**
* [github/jonschlinkert](https://github.com/jonschlinkert)
* [twitter/jonschlinkert](https://twitter.com/jonschlinkert)
### License
Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
Released under the [MIT License](LICENSE).
***
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on October 30, 2017._