Skip to content

Commit 4269bcf

Browse files
committed
docs: fix some inline highlighting
1 parent 595c351 commit 4269bcf

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

docs/language/pipeline-language/expressions.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@ String literals describe text. Their syntax is simply text enclosed by double qu
2323

2424
| Escape sequence | Meaning |
2525
|-----------------|----------------------------------------------------------------------|
26-
| `#!sds \b` | Backspace |
27-
| `#!sds \f` | Form feed |
28-
| `#!sds \n` | New line |
29-
| `#!sds \r` | Carriage return |
30-
| `#!sds \t` | Tab |
31-
| `#!sds \v` | Vertical tab |
32-
| `#!sds \0` | Null character |
33-
| `#!sds \'` | Single quote |
34-
| `#!sds \"` | Double quote |
35-
| `#!sds \{` | Opening curly brace (used for [template strings](#template-strings)) |
36-
| `#!sds \\` | Backslash |
37-
| `#!sds \uXXXX` | Unicode character, where `XXXX` is its hexadecimal code |
26+
| `\b` | Backspace |
27+
| `\f` | Form feed |
28+
| `\n` | New line |
29+
| `\r` | Carriage return |
30+
| `\t` | Tab |
31+
| `\v` | Vertical tab |
32+
| `\0` | Null character |
33+
| `\'` | Single quote |
34+
| `\"` | Double quote |
35+
| `\{` | Opening curly brace (used for [template strings](#template-strings)) |
36+
| `\\` | Backslash |
37+
| `\uXXXX` | Unicode character, where `XXXX` is its hexadecimal code |
3838

3939
String literals can contain also contain raw line breaks:
4040

@@ -136,7 +136,7 @@ nullableExpression ?: 42
136136

137137
The syntax for template strings is similar to [string literals](#string-literals): They are also delimited by double quotes, the text can contain escape sequences, and raw newlines can be inserted. The additional syntax are _template expressions_, which are any expression enclosed by `#!sds {{` and `#!sds }}`. There must be no space between the curly braces.
138138

139-
These template expressions are evaluated, converted to a string and inserted into the template string at their position. The template string in the example above is, hence, equivalent to the [string literal](#string-literals) "1 + 2 = 3".
139+
These template expressions are evaluated, converted to a string and inserted into the template string at their position. The template string in the example above is, hence, equivalent to the [string literal](#string-literals) `#!sds "1 + 2 = 3"`.
140140

141141
## References
142142

0 commit comments

Comments
 (0)