0.0.1 • Published 13 years ago
cutml v0.0.1
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!
0.0.1
13 years ago