Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/html_parser/src/mod.ts>DomUtils.getText

Port of fb55/htmlparser2 for Deno
Latest
function DomUtils.getText
Deprecated
Deprecated

Use textContent instead.

import { DomUtils } from "https://deno.land/x/html_parser@v0.1.3/src/mod.ts";
const { getText } = DomUtils;

Get a node's inner text. Same as textContent, but inserts newlines for <br> tags.

Parameters

node: Node | Node[]

Node to get the inner text of.

Returns

string

node's inner text.