0.0.1 • Published 12 years ago

cutml v0.0.1

Weekly downloads
-
License
-
Repository
-
Last release
12 years ago

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);
OptionTypeDefault
maxSizeInt100
reminderString"... more."
saveTagsArray[]

###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!