fix: Add string intention descriptions

This commit is contained in:
FalsePattern 2024-10-31 08:13:52 +01:00
parent 4805e16a99
commit a961359c4c
Signed by: falsepattern
GPG key ID: E930CDEC50C50E23
7 changed files with 25 additions and 0 deletions

View file

@ -22,6 +22,11 @@ Changelog structure reference:
- Toolchains, Run Configurations
- [Direnv](https://github.com/direnv/direnv) support
### Fixed
- Zig
- Missing description for string conversion intentions
## [19.2.0]
### Added

View file

@ -0,0 +1,4 @@
const myText =
\\Hello
\\World!💯
;

View file

@ -0,0 +1 @@
const myText = <spot>"Hello\nWorld!\u{1f4af}"</spot>;

View file

@ -0,0 +1,5 @@
<html>
<body>
Converts quoted strings into multi-line strings, un-escaping any escape sequences.
</body>
</html>

View file

@ -0,0 +1 @@
const myText = "Hello\nWorld!\u{1f4af}";

View file

@ -0,0 +1,4 @@
const myText =
<spot>\\Hello
\\World!💯</spot>
;

View file

@ -0,0 +1,5 @@
<html>
<body>
Converts multi-line strings into quoted strings, escaping characters if necessary.
</body>
</html>