File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -650,6 +650,16 @@ literal = "`" json-text "`" ;; # Literal Expressions
650
650
; ; literal values. Note that the \` character must now be escaped in a json-value which means implementations need to
651
651
; ; handle this case before passing the resulting string to a JSON parser.
652
652
; ;
653
+ ; ; ```note
654
+ ; ; When [JEP-12](https://github.com/jmespath-community/jmespath.spec/blob/main/jep-012-raw-string-literals.md)
655
+ ; ; introduced raw string literals, a legacy behavior in which backtick literals
656
+ ; ; containing invalid JSON text would be interpreted as if their contents were wrapped
657
+ ; ; in double quotes (e.g., `` `foo` == `"foo"` ``) was deprecated but implementations
658
+ ; ; were allowed to continue supporting it.
659
+ ; ;
660
+ ; ; In this version of the specification, that behavior has been fully removed.
661
+ ; ; ```
662
+ ; ;
653
663
; ; ## Examples
654
664
; ; ```
655
665
; ; search(`"foo"`, "anything") -> "foo"
You can’t perform that action at this time.
0 commit comments