File tree 1 file changed +13
-1
lines changed
1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ with raw string literals.
8
8
9
9
Example:
10
10
11
- .. code-blocK :: c++
11
+ .. code-block :: c++
12
12
13
13
const char *const Quotes{"embedded \" quotes\" "};
14
14
const char *const Paragraph{"Line one.\n Line two.\n Line three.\n "};
@@ -44,3 +44,15 @@ string literals are left unchanged.
44
44
An escaped horizontal tab, form feed, or vertical tab prevents the string
45
45
literal from being converted. The presence of a horizontal tab, form feed or
46
46
vertical tab in source code is not visually obvious.
47
+
48
+ .. option :: DelimiterStem
49
+
50
+ Custom delimiter to escape characters in raw string literals. It is used in
51
+ the following construction: ``R"stem_delimiter(contents)stem_delimiter" ``.
52
+ The default value is `lit `.
53
+
54
+ .. option :: ReplaceShorterLiterals
55
+
56
+ Controls replacing shorter non-raw string literals with longer raw string
57
+ literals. Setting this option to `true ` enables the replacement.
58
+ The default value is `false ` (shorter literals are not replaced).
You can’t perform that action at this time.
0 commit comments