fix: Add string intention descriptions
This commit is contained in:
parent
4805e16a99
commit
a961359c4c
7 changed files with 25 additions and 0 deletions
|
@ -22,6 +22,11 @@ Changelog structure reference:
|
||||||
- Toolchains, Run Configurations
|
- Toolchains, Run Configurations
|
||||||
- [Direnv](https://github.com/direnv/direnv) support
|
- [Direnv](https://github.com/direnv/direnv) support
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Zig
|
||||||
|
- Missing description for string conversion intentions
|
||||||
|
|
||||||
## [19.2.0]
|
## [19.2.0]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
const myText =
|
||||||
|
\\Hello
|
||||||
|
\\World!💯
|
||||||
|
;
|
|
@ -0,0 +1 @@
|
||||||
|
const myText = <spot>"Hello\nWorld!\u{1f4af}"</spot>;
|
|
@ -0,0 +1,5 @@
|
||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
Converts quoted strings into multi-line strings, un-escaping any escape sequences.
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1 @@
|
||||||
|
const myText = "Hello\nWorld!\u{1f4af}";
|
|
@ -0,0 +1,4 @@
|
||||||
|
const myText =
|
||||||
|
<spot>\\Hello
|
||||||
|
\\World!💯</spot>
|
||||||
|
;
|
|
@ -0,0 +1,5 @@
|
||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
Converts multi-line strings into quoted strings, escaping characters if necessary.
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Add table
Reference in a new issue