get-tag
v0.1.10
Published
Create HTML tag strings on the fly.
Downloads
1,311
Maintainers
Readme
get-tag
Create HTML tag strings on the fly.
Installation
Install the package from npm:
npm install get-tag
Usage
const getTag = require('get-tag');
console.log(getTag('title', 'Some Title'));
// <title>Some Title</title>
console.log(getTag('a', 'Some Link', {href: 'foo.com'}));
// <a href="foo.com">Some link</a>
console.log(getTag('meta', null, {name: 'author', content: 'foo'}));
// <meta name="author" content="foo">
If the provided HTML tag name is included in the void-elements list, then selfClosing
will be set to true
.