UNPKG

@divriots/cheerio

Version:

The fast, flexible & elegant library for parsing and manipulating HTML and XML.

110 lines 3.82 kB
/** * Types used in signatures of Cheerio methods. * * @category Cheerio */ export * from './types.js'; import { getLoad } from './load.js'; import { getParse } from './parse.js'; import { renderWithParse5, parseWithParse5 } from './parsers/parse5-adapter.js'; import renderWithHtmlparser2 from 'dom-serializer'; import { parseDocument as parseWithHtmlparser2 } from 'htmlparser2'; const parse = getParse((content, options, isDocument, context) => options._useHtmlParser2 ? parseWithHtmlparser2(content, options) : parseWithParse5(content, options, isDocument, context)); // Duplicate docs due to https://github.com/TypeStrong/typedoc/issues/1616 /** * Create a querying function, bound to a document created from the provided * markup. * * Note that similar to web browser contexts, this operation may introduce * `<html>`, `<head>`, and `<body>` elements; set `isDocument` to `false` to * switch to fragment mode and disable this. * * @category Loading * @param content - Markup to be loaded. * @param options - Options for the created instance. * @param isDocument - Allows parser to be switched to fragment mode. * @returns The loaded document. * @see {@link https://cheerio.js.org#loading} for additional usage information. */ export const load = getLoad(parse, (dom, options) => options._useHtmlParser2 ? renderWithHtmlparser2(dom, options) : renderWithParse5(dom)); const defaultInstance = load([]); /** * The default cheerio instance. * * @deprecated Use the function returned by `load` instead. To access load, make * sure you are importing `* as cheerio` instead of this default export. * @category Deprecated */ export default defaultInstance; import * as staticMethods from './static.js'; export const { contains, merge } = staticMethods; /** * Renders the document. * * @deprecated Use `html` on the loaded instance instead. * @category Deprecated * @param dom - Element to render. * @param options - Options for the renderer. * @returns The rendered document. */ export const html = staticMethods.html.bind(defaultInstance); /** * Render the document as XML. * * @deprecated Use `xml` on the loaded instance instead. * @category Deprecated * @param dom - Element to render. * @returns The rendered document. */ export const xml = staticMethods.xml.bind(defaultInstance); /** * Render the document as text. * * This returns the `textContent` of the passed elements. The result will * include the contents of `<script>` and `<style>` elements. To avoid this, use * `.prop('innerText')` instead. * * @deprecated Use `text` on the loaded instance instead. * @category Deprecated * @param elements - Elements to render. * @returns The rendered document. */ export const text = staticMethods.text.bind(defaultInstance); /** * The `.parseHTML` method exported by the Cheerio module is deprecated. * * In order to promote consistency with the jQuery library, users are encouraged * to instead use the static method of the same name as it is defined on the * "loaded" Cheerio factory function. * * @deprecated Use `parseHTML` on the loaded instance instead. * @category Deprecated * @example * * ```js * const $ = cheerio.load(''); * $.parseHTML('<b>markup</b>'); * ``` */ export const parseHTML = staticMethods.parseHTML.bind(defaultInstance); /** * The `.root` method exported by the Cheerio module is deprecated. * * Users seeking to access the top-level element of a parsed document should * instead use the `root` static method of a "loaded" Cheerio function. * * @deprecated Use `root` on the loaded instance instead. * @category Deprecated * @example * * ```js * const $ = cheerio.load(''); * $.root(); * ``` */ export const root = staticMethods.root.bind(defaultInstance); //# sourceMappingURL=index.js.map