Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 749 Bytes

README.md

File metadata and controls

30 lines (18 loc) · 749 Bytes

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 ]