html_to_text
Convert HTML files to structured plain text for easier processing. Save the output to a specified directory.
Instructions
Convert HTML to plain text while preserving structure
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputPath | Yes | Path to the input HTML file | |
outputDir | Yes | Directory where text file should be saved |
Input Schema (JSON Schema)
{
"properties": {
"inputPath": {
"description": "Path to the input HTML file",
"type": "string"
},
"outputDir": {
"description": "Directory where text file should be saved",
"type": "string"
}
},
"required": [
"inputPath",
"outputDir"
],
"type": "object"
}