Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

htmlparser-to-html

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

htmlparser-to-html

Converts the JSON that the htmlparser/htmlparser2 package produces back to HTML.

  • 0.0.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
179
increased by265.31%
Maintainers
1
Weekly downloads
 
Created
Source

htmlparser-to-html

Converts the JSON that htmlparser (and probably htmlparser2) produces back to HTML.

Useful if you're doing some sort of transformation.

Tests are based on reversing the parser tests in htmlparser, so they are quite comprehensive.

API

Returns a single function html(tree, [parent, mapFn]) which returns a html string.

Optionally, you can apply a function to each element just before they are converted to HTML - for example, converting items that are not in the right format into htmlparser-compatible input.

  • tree: a tree structure produced by htmlparser
  • parent: optional param - a parent element, only used for the mapFn.
  • mapFn: a function(item, parent) that is applied to each element just before the element is converted into html. The parent parameter is either the original value of the parent (default: null), or the parent element of this child element.

Usage

var html = require('htmlparser-to-html');

console.log(html([
        {   type: 'tag'
          , name: 'html'
          , children:
             [ { type: 'tag'
               , name: 'title'
               , children: [ { data: 'The Title', type: 'text' } ]
               }
             , { type: 'tag'
               , name: 'body'
               , children: [ { data: 'Hello world', type: 'text' } ]
               }
             ]
          }
        ]));

// outputs: <html><title>The Title</title><body>Hello world</body></html>

Of course, you probably want to generate the array from htmlparser.

Keywords

FAQs

Package last updated on 29 Jul 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc