dom-parse

3.2.1 • Public • Published

dom-parse

Parse a string of HTML or XML (including MathML, SVG, XHTML) into a document object.

Uses the HTML template element in browsers and jsdom in Node.js.

Usage

import { parse } from 'dom-parse';

parse(string);

Parameters

  • string String containing HTML or XML to parse.

Return value

DocumentFragment Object containing Node structure of HTML/XML parsed.

Example

import { parse } from 'dom-parse';

parse('Some <em>awesome</em> markup <img src="explosion.gif">');
// returns DocumentFragment(4) [ #text, em, #text, img ]

Package Sidebar

Install

npm i dom-parse

Weekly Downloads

2,706

Version

3.2.1

License

MIT

Unpacked Size

6.45 kB

Total Files

11

Last publish

Collaborators

  • jacobbuck