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

readability-text-cleanup

v1.0.0

Published

A Rust library for cleaning up text from HTML using Mozilla's Readability algorithm

Downloads

24

Readme

Readability Text Cleanup

This projectis a Rust library designed to enhance the readability of text by cleaning up HTML content, unescaping HTML entities, replacing abbreviations, and splitting text into paragraphs. It leverages the power of Rust for efficient text processing and aims to provide a comprehensive solution for preparing text for further analysis or display. Additionally, it is compiled to WebAssembly (Wasm) and published to npm, making it accessible for use in Node.js environments.

Features

  • HTML Cleanup: Removes HTML tags and entities, ensuring that the text is free from any HTML formatting.
  • HTML Entity Unescaping: Converts HTML entities (e.g., & to &) to their corresponding characters.
  • Abbreviation Replacement: Replaces common abbreviations with their full forms for better readability.
  • Text Segmentation: Splits the text into paragraphs, making it easier to process and analyze.
  • Customizable: Offers a range of functions for specific text processing needs, from simple HTML tag removal to more complex sentence splitting and repair.
  • WebAssembly Compatibility: Compiled to Wasm for use in web and Node.js environments.

Getting Started

To use this library in your Rust project, add it as a dependency in your Cargo.toml file:

[dependencies]
readability-text-cleanup = "0.1.0" # Use the latest version

For Node.js projects, you can install the npm package:

npm install readability-text-cleanup

Usage

Rust

Here's a basic example of how to use the library to prepare text in Rust:

use readability_text_cleanup_rs::prepare_text;

fn main() {
    let html_content = r#"<p>This is a <strong>sample</strong> HTML content.</p>"#;
    let cleaned_text = prepare_text(html_content);
    println!("{}", cleaned_text);
}

This will output:

This is a sample HTML content.

Node.js

To use the library in a Node.js project, you can import it and use it as follows:

const { prepareText } = require('readability-text-cleanup');

const htmlContent = '<p>This is a <strong>sample</strong> HTML content.</p>';
const cleanedText = prepareText(htmlContent);
console.log(cleanedText);

This will output:

This is a sample HTML content.

License

This project is licensed under the MIT license.

Acknowledgments

  • The html2md library for HTML to Markdown conversion.
  • The regex library for powerful text processing capabilities.
  • The katana module for advanced text segmentation.