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

@mroussedd/html-to-text

v6.0.0-dd

Published

Advanced html to plain text converter

Downloads

2

Readme

html-to-text

Build Status Test Coverage

An advanced converter that parses HTML and returns beautiful text. It was mainly designed to transform HTML E-Mail templates to a text representation. So it is currently optimized for table layouts.

Features

  • Transform headlines to uppercase text.
  • Convert tables to an appropiate text representation with rows and columns.
  • Word wrapping for paragraphs (default 80 chars).
  • Automatic extraction of href information from links.
  • <br> conversion to \n.
  • Unicode support.
  • Runs in browser and server environments.

Installation

npm install html-to-text

Or when you want to use it as command line interface it is recommended to install it globally via

npm install html-to-text -g

Usage

const htmlToText = require('html-to-text');

const text = htmlToText.fromString('<h1>Hello World</h1>', {
  wordwrap: 130
});
console.log(text); // Hello World

Options

You can configure the behaviour of html-to-text with the following options:

Option | Default | Description ------------------ | --------- | ----------- baseElement | 'body' | The tag(s) whose text content will be captured from the html and added to the resulting text output.Single element or an array of elements can be specified, each as a single tag name with optional css class and id parameters e.g. ['p.class1.class2#id1#id2', 'p.class1.class2#id1#id2']. decodeOptions | { isAttributeValue: false, strict: false } | Text decoding options given to he.decode. For more informations see the he module. format | {} | An object with custom formatting functions for specific elements (see below). hideLinkHrefIfSameAsText | false | By default links are translated the following <a href='link'>text</a> => becomes => text [link]. If this option is set to true and link and text are the same, [link] will be hidden and only text visible. ignoreHref | false | Ignore all links if true. ignoreImage | false | Ignore all images if true. linkHrefBaseUrl | null | Server host for link href attributes and image src attributes (starting from version 6.0.0), where the links start at the root (/).For example, linkHrefBaseUrl = 'http://asdf.com' and <a href='/dir/subdir'>...</a> the link in the text will be http://asdf.com/dir/subdir.Keep in mind that linkHrefBaseUrl shouldn't end with a /. longWordSplit | { wrapCharacters: [], forceWrapOnLimit: false } | Describes how to wrap long words, has the following parameters:wrapCharacters is an array containing the characters that may be wrapped on, these are used in orderforceWrapOnLimit defines whether to break long words on the limit if true. noAnchorUrl | true | Ignore anchor links (where href='#...'). noLinkBrackets | false | Don't print brackets around the link if true. preserveNewlines | false | By default, any newlines \n in a block of text will be removed. If true, these newlines will not be removed. returnDomByDefault | true | Convert the entire document if we don't find the tag defined in baseElement if true. singleNewLineParagraphs | false | By default, paragraphs are converted with two newlines (\n\n). Set to true to convert to a single newline. tables | [] | Allows to select certain tables by the class or id attribute from the HTML document. This is necessary because the majority of HTML E-Mails uses a table based layout. Prefix your table selectors with an . for the class and with a # for the id attribute. All other tables are ignored.You can assign true to this attribute to select all tables. unorderedListItemPrefix | ' * ' | The string that is used as item prefix for unordered lists <ol>. uppercaseHeadings | true | By default, headings (<h1>, <h2>, etc) are uppercased. Set to false to leave headings as they are. wordwrap | 80 | After how many chars a line break should follow in p elements.Set to null or false to disable word-wrapping.

Override formatting for specific elements

By using the format option, you can specify formatting for these elements:

Key | Tags ----------------- | ----------------- anchor | a blockquote | blockquote heading | h1, h2, h3, h4, h5, h6 horizontalLine | hr image | img lineBreak | br ~~listItem~~ | orderedList | ol paragraph | p, pre table | table text | unorderedList | ul

Each key must be a function which eventually receive elem (the current elem), fn (the next formatting function) and options (the options passed to html-to-text).

var htmlToText = require('html-to-text');

var text = htmlToText.fromString('<h1>Hello World</h1>', {
  format: {
    heading: function (elem, fn, options) {
      var h = fn(elem.children, options);
      return '====\n' + h.toUpperCase() + '\n====';
    }
  }
});

console.log(text);

Command Line Interface

It is possible to use html-to-text as command line interface. This allows an easy validation of your generated text and the integration in other systems that does not run on node.js.

html-to-text uses stdin and stdout for data in and output. So you can use html-to-text the following way:

cat example/test.html | html-to-text > test.txt

There also all options available as described above. You can use them like this:

cat example/test.html | html-to-text --tables=#invoice,.address --wordwrap=100 > test.txt

The tables option has to be declared as comma separated list without whitespaces.

Example

<html>
  <head>
    <meta charset="utf-8">
  </head>

  <body>
    <table cellpadding="0" cellspacing="0" border="0">
      <tr>
        <td>
          <h2>Paragraphs</h2>
          <p class="normal-space">At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. <a href="www.github.com">Github</a>
          </p>
          <p class="normal-space">At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
          </p>
        </td>
        <td></td>
      </tr>
      <tr>
        <td>
          <hr/>
          <h2>Pretty printed table</h2>
          <table id="invoice">
            <thead>
              <tr>
                <th>Article</th>
                <th>Price</th>
                <th>Taxes</th>
                <th>Amount</th>
                <th>Total</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td>
                  <p>
                    Product 1<br />
                    <span style="font-size:0.8em">Contains: 1x Product 1</span>
                  </p>
                </td>
                <td align="right" valign="top">6,99&euro;</td>
                <td align="right" valign="top">7%</td>
                <td align="right" valign="top">1</td>
                <td align="right" valign="top">6,99€</td>
              </tr>
              <tr>
                <td>Shipment costs</td>
                <td align="right">3,25€</td>
                <td align="right">7%</td>
                <td align="right">1</td>
                <td align="right">3,25€</td>
              </tr>
            </tbody>
            <tfoot>
              <tr>
                <td>&nbsp;</td>
                <td>&nbsp;</td>
                <td colspan="3">to pay: 10,24€</td>
              </tr>
              <tr>
                <td></td>
                <td></td>
                <td colspan="3">Taxes 7%: 0,72€</td>
              </tr>
            </tfoot>
          </table>

        </td>
        <td></td>
      </tr>
      <tr>
        <td>
          <hr/>
          <h2>Lists</h2>
          <ul>
            <li>At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</li>
            <li>At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</li>
          </ul>
          <ol>
            <li>At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</li>
            <li>At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</li>
          </ol>
        </td>
      </tr>
      <tr>
        <td>
          <hr />
          <h2>Column Layout with tables</h2>
          <table class="address">
            <tr>
              <th align="left">Invoice Address</th>
              <th align="left">Shipment Address</th>
            </tr>
            <tr>
              <td align="left">
                <p>
                Mr.<br/>
                John Doe<br/>
                Featherstone Street 49<br/>
                28199 Bremen<br/>
                </p>
              </td>
              <td align="left">
                <p>
                Mr.<br/>
                John Doe<br/>
                Featherstone Street 49<br/>
                28199 Bremen<br/>
                </p>
              </td>
            </tr>
          </table>
        </td>
        <td></td>
      </tr>
      <tr>
        <td>
          <hr/>
          <h2>Mailto formating</h2>
          <p class="normal-space small">
            Some Company<br />
            Some Street 42<br />
            Somewhere<br />
            E-Mail: <a href="mailto:[email protected]">Click here</a>
          </p>
        </td>
      </tr>
    </table>
  </body>
</html>

Gets converted to:

PARAGRAPHS
At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd
gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum
dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos
et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea
takimata sanctus est Lorem ipsum dolor sit amet. Github [www.github.com]

At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd
gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum
dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos
et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea
takimata sanctus est Lorem ipsum dolor sit amet.

--------------------------------------------------------------------------------

PRETTY PRINTED TABLE
ARTICLE                  PRICE   TAXES             AMOUNT   TOTAL
Product 1                6,99€   7%                1        6,99€
Contains: 1x Product 1
Shipment costs           3,25€   7%                1        3,25€
                                 to pay: 10,24€
                                 Taxes 7%: 0,72€

--------------------------------------------------------------------------------

LISTS
 * At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd
   gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
 * At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd
   gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

 1. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd
    gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
 2. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd
    gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

--------------------------------------------------------------------------------

COLUMN LAYOUT WITH TABLES
INVOICE ADDRESS          SHIPMENT ADDRESS
Mr.                      Mr.
John Doe                 John Doe
Featherstone Street 49   Featherstone Street 49
28199 Bremen             28199 Bremen

--------------------------------------------------------------------------------

MAILTO FORMATING
Some Company
Some Street 42
Somewhere
E-Mail: Click here [[email protected]]

License

(The MIT License)

Copyright (c) 2019 werk85 <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.