html-tags

WebJar for html-tags

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

html-tags
Last Version

Last Version

3.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

html-tags
WebJar for html-tags
Project URL

Project URL

https://www.webjars.org
Source Code Management

Source Code Management

https://github.com/sindresorhus/html-tags

Download html-tags

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/html-tags/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>html-tags</artifactId>
    <version>3.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/html-tags/
implementation 'org.webjars.npm:html-tags:3.1.0'
// https://jarcasting.com/artifacts/org.webjars.npm/html-tags/
implementation ("org.webjars.npm:html-tags:3.1.0")
'org.webjars.npm:html-tags:jar:3.1.0'
<dependency org="org.webjars.npm" name="html-tags" rev="3.1.0">
  <artifact name="html-tags" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='html-tags', version='3.1.0')
)
libraryDependencies += "org.webjars.npm" % "html-tags" % "3.1.0"
[org.webjars.npm/html-tags "3.1.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

html-tags Build Status

List of standard HTML tags

It's just a couple of JSON files that can be used in any environment.

It intentionally leaves out obsolete tags.

Install

$ npm install html-tags

Usage

const htmlTags = require('html-tags');

console.log(htmlTags);
//=> ['a', 'abbr', 'acronym', …]

And void (self-closing) tags:

const voidHtmlTags = require('html-tags/void');

console.log(voidHtmlTags);
//=> ['area', 'base', 'br', …]

Versions

Version
3.1.0
2.0.0
1.2.0