npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

content-editable-formatter

v2.2.0

Published

String formatting utilities for content editable div input

Downloads

13

Readme

content-editable-formatter

Build Status

Content-editable-formatter provides a handful of string formatting utilities for user's contenteditable input. Although the package aims to aid sanitization of content editable div element input, it can just as easily be used to remove HTML elements by any string.

Installation

npm install content-editable-formatter --save

Usage

import {
  removeBrElements,
  removeDivElements,
  removeNonBreakingSpaces,
  transformString
} from 'content-editable-formatter'

API

transformString(string)

Returns a function serving as convience method to apply multiple formatting transformations to the passed string.

const input = '<div><br></div>foo<br>&nbsp;'
const cleanInput = transformString(input)(
  removeDivElements,
  removeBrElements,
  removeNonBreakingSpaces
)

console.log(cleanInput) // 'foo'

removeDivElements(string)

Returns a string with all inline instances of <div> element variants (<div>, </div>, <DIV>, </DIV>) removed.

const input = '<div>foo</div>'

removeDivElements(input) // 'foo'

removeBrElements(string)

Returns a string with all inline instances of <br> element variants (<br>, <br />, < br />,<BR>, <BR />, < BR />) removed.

const input = 'foo<br>bar'

removeBrElements(input) // 'foobar'

removeLeadingBrElements(string)

Returns a string with all leading instances of <br> element variants (<br>, <br />, < br />,<BR>, <BR />, < BR />) removed.

const input = '<br>foo<br>bar<br>'

removeLeadingBrElements(input) // 'foo<br>bar<br>'

removeTrailingBrElements(string)

Returns a string with all trailing instances of <br> element variants (<br>, <br />, < br />,<BR>, <BR />, < BR />) removed.

const input = '<br>foo<br>bar<br>'

removeTrailingBrElements(input) // '<br>foo<br>bar'

removeNonBreakingSpaces(string)

Returns a string with all inline instance of &nbsp; removed. This does not remove the numeric character references (&#160;, &#xA0;).

const input = 'foo&nbsp;bar'

removeNonBreakingSpaces(input) // 'foobar'

removeEmptyEmphasisElements(string)

Whitespace sensative, this returns a string will all inline instances of <em></em> removed.

const input = 'foo<em></em>bar'

removeEmptyEmphasisElements(input) // 'foobar'

It will remove nested, empty <em> parents and children,

const input = '<em><em></em></em>'

removeEmptyEmphasisElements(input) // ''

but it will not remove any of the elements if the nested children enclose text,

const input = '<em><em>foo</em></em>'

removeEmptyEmphasisElements(input) // '<strong><strong>foo</strong></strong>'

removeEmptyParagraphElements(string)

Whitespace sensative, this returns a string will all inline instances of <p></p> removed.

const input = 'foo<p></p>bar'

removeEmptyEmphasisElements(input) // 'foobar'

It will remove nested, empty <p> parents and children,

const input = '<p><p></p></p>'

removeEmptyEmphasisElements(input) // ''

but it will not remove any of the elements if the nested children enclose text,

const input = '<p><p>foo</p></p>'

removeEmptyEmphasisElements(input) // '<strong><strong>foo</strong></strong>'

removeEmptyStrongElements(string)

Whitespace sensative, this returns a string will all inline instances of <strong></strong> removed.

const input = 'foo<strong></strong>bar'

removeEmptyStrongElements(input) // 'foobar'

It will remove nested, empty <strong> parents and children,

const input = '<strong><strong></strong></strong>'

removeEmptyStrongElements(input) // ''

but it will not remove any of the elements if the nested children enclose text,

const input = '<strong><strong>foo</strong></strong>'

removeEmptyStrongElements(input) // '<strong><strong>foo</strong></strong>'

Future Versions

Methods to be implemented in future versions include,

  • removeAllHtmlElements(string)
  • removeCaridgeReturns(string)
  • removeWhiteSpaceMetacharacters(string)
  • unescapeHtml(string)