From 18671ff958ae6296cc10e90fecf5a0ef263a2063 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Restivo?= Date: Mon, 11 Mar 2024 11:14:35 +0000 Subject: [PATCH] fix: add \$ as a possibleescape char in double quoted strings in PHP --- markdown/php.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown/php.md b/markdown/php.md index 2159d72..05d5316 100644 --- a/markdown/php.md +++ b/markdown/php.md @@ -536,7 +536,7 @@ Single quoted strings don't recognize any other escape sequences. # Double Quote -If the string is enclosed in *double quotes*, more escape sequences for special characters are allowed (e.g. \r, \n, \t, \\\\, \"): +If the string is enclosed in *double quotes*, more escape sequences for special characters are allowed (e.g. \r, \n, \t, \\\\, \", \$): ```php $title = "The quick brown fox\njumps over the lazy dog";