@starptech/webparser

0.1.7 • Public • Published

@starptech/webparser

Optimized html parser for HTML5 Web Components.

Features

  • Can parse custom self-closing elements
  • Can parse tags and attributes case-sensitive
  • Can skip decoding of html entities
  • Can consume the first linefeed in pre, textarea or listing tags (is skipped by HTML5 spec)

Those features are very useful if you want to implement a HTML formatter or anything else where a less strict parser is needed to keep all informations in the ast.

Installation

npm install --save @starptech/webparser

Usage

This example shows how we parse HTML

const parser = new HtmlParser(options)
const result = parser.parse('<div></div>')
result.errors
result.rootNodes

API

options.decodeEntities (enabled by default)

Decode html entities in text and attributes according to HTML5 specification.

options.ignoreFirstLf (enabled by default)

Ignore first line feed of pre, textarea and listing tags according to HTML5 specification.

options.selfClosingCustomElements (disabled by default)

Allow custom self-closing elements. A custom element is an HTML tag which isn't part of the official HTML5 specification.

Credits

The parser is a modificated version of Angular 6 template parser.

Package Sidebar

Install

npm i @starptech/webparser@0.1.7

Version

0.1.7

License

MIT

Unpacked Size

272 kB

Total Files

67

Last publish

Collaborators

  • starptech