From 508e16bc76b86e78860baadac57b8ea6507c2350 Mon Sep 17 00:00:00 2001 From: Fred Emmott Date: Sat, 25 Mar 2023 10:43:39 -0500 Subject: [PATCH] Fix incorrectly escaped markdown backslashes --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b0ba45..98e64cc 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ jobs: > **⚠️ Note:** Notice the `|` in the yaml syntax above ☝️. That let's you effectively declare a multi-line yaml string. You can learn more about multi-line yaml syntax [here](https://yaml-multiline.info) -> **⚠️ Note for Windows:** Paths must use `/` as a separator, not `\\`, as `\\` is used to escape characters with special meaning in the pattern; for example, instead of specifying `D:\Foo.txt`, you must specify `D:/Foo.txt`. If you're using PowerShell, you can do this with `$Path = $Path -replace '\\','/'` +> **⚠️ Note for Windows:** Paths must use `/` as a separator, not `\`, as `\` is used to escape characters with special meaning in the pattern; for example, instead of specifying `D:\Foo.txt`, you must specify `D:/Foo.txt`. If you're using PowerShell, you can do this with `$Path = $Path -replace '\\','/'` ### 📝 External release notes