cutml

0.0.1 • Public • Published

CuTML

What I can do

I can cut your string and keep the HTML tags safe! ò/

##Usage

var CuTML = require('CuTML');
var newStr = CuTML(htmlString, options);
Option Type Default
maxSize Int 100
reminder String "... more."
saveTags Array []

###Clean usage:

var newStr = CuTML('<a>The book is on the table.</a>', {maxSize: 10});

CuTML will return a 10 length string with all the tags!

###Non-counted tags:

var newStr = CuTML('<span>non-counted text</span><a>The book is on the table.</a>', {maxSize: 10, saveTags: ['span']});

All the text inside <span></span> tags won't be counted!

Readme

Keywords

none

Package Sidebar

Install

npm i cutml

Weekly Downloads

1

Version

0.0.1

License

MIT

Last publish

Collaborators

  • erkoala