stristri
TypeScript icon, indicating that this package has built-in type declarations

5.0.24 • Public • Published

stristri

Extracts or deletes HTML, CSS, text and/or templating tags from string

page on codsen.com page on npm page on github Downloads per month changelog MIT Licence

Install

This package is pure ESM. If you're not ready yet, install an older version of this program, 3.2.0 (npm i stristri@3.2.0).

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.

ok codsen star

/stristri/

    Package Sidebar

    Install

    npm i stristri

    Weekly Downloads

    5

    Version

    5.0.24

    License

    MIT

    Unpacked Size

    106 kB

    Total Files

    7

    Last publish

    Collaborators

    • royston