Skip to content

Commit b90bf96

Browse files
committed
minor #5750 fix YAML syntax highlighting (xabbuh)
This PR was merged into the 2.3 branch. Discussion ---------- fix YAML syntax highlighting | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | all | Fixed tickets | #5684 In YAML, double quoted strings can contain escape sequences. Thus, we would have to escape the backslash if we wanted to use them instead of single quotes (see the Platform.sh build to spot the difference now). Commits ------- 818d734 fix YAML syntax highlighting
2 parents a89fb70 + 818d734 commit b90bf96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cookbook/email/dev_environment.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,11 +143,11 @@ by adding the ``delivery_whitelist`` option:
143143
delivery_whitelist:
144144
# all email addresses matching this regex will *not* be
145145
# redirected to [email protected]
146-
- "/@specialdomain\.com$/"
146+
- '/@specialdomain\.com$/'
147147
148148
# all emails sent to [email protected] won't
149149
# be redirected to [email protected] too
150-
- "/^admin@mydomain\.com$/"
150+
- '/^admin@mydomain\.com$/'
151151
152152
.. code-block:: xml
153153

0 commit comments

Comments
 (0)