html-entities-extended
Encode or decode extended HTML entities in text for accurate data handling and web content processing. Ideal for developers managing special characters in HTML.
Instructions
Extended HTML entity encoding/decoding
Input Schema
Name | Required | Description | Default |
---|---|---|---|
operation | Yes | Operation to perform | |
text | Yes | Text to encode or decode |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"operation": {
"description": "Operation to perform",
"enum": [
"encode",
"decode"
],
"type": "string"
},
"text": {
"description": "Text to encode or decode",
"type": "string"
}
},
"required": [
"text",
"operation"
],
"type": "object"
}