stristri
v5.0.25
Published
Extracts or deletes HTML, CSS, text and/or templating tags from string
Downloads
983
Maintainers
Readme
Install
This package is pure ESM. If you're not ready yet, install an older version of this program, 3.2.0 (npm i [email protected]
).
npm i stristri
Quick Take
import { strict as assert } from "assert";
import { stri } from "stristri";
// strips both HTML and Nunjucks, leaves text only:
assert.equal(
stri(
"<html><div>The price is{% if data.price > 100 %} high{% endif %}</div>",
{
html: true,
css: true,
text: false,
templatingTags: true,
},
).result,
"The price is high",
);
Documentation
Please visit codsen.com for a full description of the API.
Contributing
To report bugs or request features or assistance, raise an issue on GitHub.
Licence
MIT License.
Copyright © 2010-2024 Roy Revelt and other contributors.