1.0.0 • Published 4 years ago

@dcmox/lexy v1.0.0

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
4 years ago

lexy

Lexy is an HTML lexer that can break down an HTML document into a tree-like structure and find parsing errors (unclosed/closed tags that are missing) and suggest hints at what might be wrong.

Use

const LexyScan = require('@dcmox/lexy').LexyScan

const lexy = new LexyScan(doc)
console.log(JSON.stringify(lexy.scan(), null, 2))

Example output

LexyScan