Package Exports
- @starptech/webparser
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@starptech/webparser) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@starptech/webparser
Optimized html parser for HTMl5 Web Components.
npm install --save @starptech/webparser
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
orlisting
tags (is skipped by HTML5 spec)
Those features are very useful if you want to implement a HTML formatter
Example
const parser = new HtmlParser({
decodeEntities: true,
ignoreFirstLf: true,
selfClosingCustomElements: true
})
const result = parser.parse('<div></div>')
result.errors
result.rootNodes
Credits
The parser is a moificated version of Angular 6 template parser.