yaml-format
Format and prettify YAML strings for improved readability and consistency. Simplify YAML structure for better management and deployment in development workflows.
Instructions
Format and prettify YAML
Input Schema
Name | Required | Description | Default |
---|---|---|---|
yaml | Yes | YAML string to format |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"yaml": {
"description": "YAML string to format",
"type": "string"
}
},
"required": [
"yaml"
],
"type": "object"
}