You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add radio button to toggle between escape and unescape modes
- Added radio buttons to switch between Escape and Unescape modes
- Implemented unescapeHTML function to convert HTML entities back to characters
- Updated output label to dynamically reflect the current mode
- Enhanced documentation to explain both modes of operation
- Added CSS styling for the mode selector controls
* Add support for numeric HTML entities in unescape mode
- Added decoding of decimal numeric entities (e.g., ")
- Added decoding of hexadecimal numeric entities (e.g., ")
- Updated documentation to reflect numeric entity support
- Now handles all numeric character references, not just named entities
* Improve Unescape mode documentation for clarity
- Reorganized documentation into clearer format
- Grouped entity types with better visual separation
- Used arrow notation (→) for better readability
- Consolidated examples to reduce clutter
- Added clearer description of use cases
---------
Co-authored-by: Claude <noreply@anthropic.com>
<p>This HTML Entity Escaper is a simple tool that helps you convert special characters in your text to their corresponding HTML entities. It's particularly useful when you need to display code or text containing HTML syntax on a web page without it being interpreted as actual HTML.</p>
60
-
<p>The tool escapes the following characters:</p>
83
+
<p>This HTML Entity tool helps you convert between special characters and their corresponding HTML entities. It works in two modes:</p>
84
+
85
+
<h3>Escape Mode (default):</h3>
86
+
<p>Converts special characters to HTML entities. This is useful when you need to display code or text containing HTML syntax on a web page without it being interpreted as actual HTML.</p>
<p>To use the tool, simply paste your text into the input box. The escaped version will automatically appear in the output box. You can then copy the escaped text to your clipboard using the "Copy to clipboard" button.</p>
94
+
95
+
<h3>Unescape Mode:</h3>
96
+
<p>Converts HTML entities back to their original characters. This is useful when you have HTML-encoded text and need to decode it for readability or further processing.</p>
<p>The tool handles all standard HTML entities and any numeric character reference.</p>
106
+
107
+
<p>To use the tool, select your desired mode (Escape or Unescape), then paste your text into the input box. The converted text will automatically appear in the output box. You can then copy the result to your clipboard using the "Copy to clipboard" button.</p>
0 commit comments