Make WordPress Core

Changes between Initial Version and Version 7 of Ticket #64419


Ignore:
Timestamp:
01/13/2026 12:44:15 PM (8 weeks ago)
Author:
jonsurrell
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #64419

    • Property Keywords has-patch has-unit-tests added
  • Ticket #64419 – Description

    initial v7  
    1111**JSON**
    1212
    13 In JSON `SCRIPT` tags, the transformation is a simple replacement of `<` with its Unicode escape sequence `\u003C`. This can be applied to the entire contents of the script or specifically in case-insensitive matches for `<script` and `</script`.
     13Replacing `<` with its Unicode escape sequence was originally proposed. However, the same escaping mechanism used for JavaScript can be applied to JSON and produce more legible output with minimal escaping.
     14
     15~~In JSON `SCRIPT` tags, the transformation is a simple replacement of `<` with its Unicode escape sequence `\u003C`. This can be applied to the entire contents of the script or specifically in case-insensitive matches for `<script` and `</script`.~~
    1416
    1517----