html_formatter
Format and organize HTML code by inputting a file path and specifying an output directory. Enhance readability and structure of HTML documents efficiently.
Instructions
Format and beautify HTML code
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputPath | Yes | Path to the input HTML file | |
outputDir | Yes | Directory where formatted HTML should be saved |
Input Schema (JSON Schema)
{
"properties": {
"inputPath": {
"description": "Path to the input HTML file",
"type": "string"
},
"outputDir": {
"description": "Directory where formatted HTML should be saved",
"type": "string"
}
},
"required": [
"inputPath",
"outputDir"
],
"type": "object"
}