extractText()
एक HAST node से सभी text content को recursively निकालें।
import { extractText } from "@unifast/core";Signature
function extractText(node: HastNode): stringParameters
node
| Property | Type | Default | विवरण |
|---|---|---|---|
type | string | — | node type ("root", "element", "text", आदि) |
children | HastNode[] | — | child nodes ("root" और "element" types के लिए) |
value | string | — | text content ("text" type के लिए) |
Returns
string — node और उसके descendants से concatenated सभी text content।
उपयोग
import { extractText } from "@unifast/core";
import type { HastElement } from "@unifast/core";
const element: HastElement = {
type: "element",
tagName: "p",
properties: {},
children: [
{ type: "text", value: "Hello " },
{
type: "element",
tagName: "strong",
properties: {},
children: [{ type: "text", value: "world" }],
},
],
};
const text = extractText(element);
console.log(text);
// Hello worldउदाहरण
एक साधारण element से निकालें
import { extractText } from "@unifast/core";
import type { HastElement } from "@unifast/core";
const heading: HastElement = {
type: "element",
tagName: "h1",
properties: { id: "title" },
children: [{ type: "text", value: "Getting Started" }],
};
console.log(extractText(heading));
// Getting StartedNested elements से निकालें
import { extractText } from "@unifast/core";
import type { HastElement } from "@unifast/core";
const paragraph: HastElement = {
type: "element",
tagName: "p",
properties: {},
children: [
{ type: "text", value: "This is " },
{
type: "element",
tagName: "em",
properties: {},
children: [
{ type: "text", value: "deeply " },
{
type: "element",
tagName: "strong",
properties: {},
children: [{ type: "text", value: "nested" }],
},
],
},
{ type: "text", value: " content." },
],
};
console.log(extractText(paragraph));
// This is deeply nested content.खाली element
import { extractText } from "@unifast/core";
import type { HastElement } from "@unifast/core";
const emptyDiv: HastElement = {
type: "element",
tagName: "div",
properties: {},
children: [],
};
console.log(extractText(emptyDiv));
// (empty string)Heading slugs उत्पन्न करना
import { extractText } from "@unifast/core";
import type { HastElement } from "@unifast/core";
const heading: HastElement = {
type: "element",
tagName: "h2",
properties: {},
children: [
{ type: "text", value: "API " },
{
type: "element",
tagName: "code",
properties: {},
children: [{ type: "text", value: "Reference" }],
},
],
};
const slug = extractText(heading).toLowerCase().replace(/\s+/g, "-");
console.log(slug);
// api-reference