Skip to content

HTML

HTML processing enables you to parse HTML content effectively. Below you can find guidelines on using the HTML-related APIs available in GenAIScript.

Overview

HTML processing functions allow you to convert HTML content to text or markdown, helping in content extraction and manipulation for various automation tasks.

convertToText

Converts HTML content into plain text. This is useful for extracting readable text from web pages.

const htmlContent = "<p>Hello, world!</p>"
const text = HTML.HTMLToText(htmlContent)
// Output will be: "Hello, world!"

convertToMarkdown

Converts HTML into Markdown format. This function is handy for content migration projects or when integrating web content into markdown-based systems.

const htmlContent = "<p>Hello, <strong>world</strong>!</p>"
const markdown = HTML.HTMLToMarkdown(htmlContent)
// Output will be: "Hello, **world**!"

convertTablesToJSON

This function specializes in extracting tables from HTML content and converting them into JSON format. It is useful for data extraction tasks from web pages.

const tables = HTML.convertTablesToJSON(htmlContent)
const table = tables[0]
defData("DATA", table)