0.2.4 • Published 4 years ago

mozilla-readability-cli v0.2.4

Weekly downloads
3
License
Unlicense
Repository
github
Last release
4 years ago

readability-cli

A CLI for Mozilla's Readability.

Install

To install globally with yarn:

yarn global add mozilla-readability-cli

To install globally with npm:

npm install -g mozilla-readability-cli

Usage

# run readability --help for the latest version, I just copy it here once in a while.

Usage: readability [options] <url>

Sanitizes stdin, parses the result with Mozilla Readability, somewhat sanitizes the output again, and finally print it to stdout. Note that you need to also specify the URL in addition to feeding us the HTML in stdin. Using an empty URL seems to work though.

Options:
  -V, --version  output the version number
  -h, --help     display help for command

Examples

curl https://example.com | readability https://example.com

readmoz () {
    local url="$1"
    local html="$(curl "$url" | readability "$url")"
    print -nr -- "$html"
}