xml-format
Format and organize XML strings with customizable indentation for improved readability and structure. Ideal for developers working with XML data.
Instructions
Format and prettify XML
Input Schema
Name | Required | Description | Default |
---|---|---|---|
indent | No | Number of spaces for indentation | |
xml | Yes | XML string to format |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"indent": {
"description": "Number of spaces for indentation",
"type": "number"
},
"xml": {
"description": "XML string to format",
"type": "string"
}
},
"required": [
"xml"
],
"type": "object"
}