From dfc38db855b4ffd819268435dabcf3345b1eb241 Mon Sep 17 00:00:00 2001 From: Frands Otting Date: Sun, 18 Aug 2024 02:45:52 +0200 Subject: [PATCH] Fix string markers in markdown (#6601) Surround quotation marks with backticks to make the marks render correctly on the website. --- .../roadmaps/javascript/content/string@1RcwBHU3jzx0YxxUGZic4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/javascript/content/string@1RcwBHU3jzx0YxxUGZic4.md b/src/data/roadmaps/javascript/content/string@1RcwBHU3jzx0YxxUGZic4.md index 79ea3eed1..dcfbca98f 100644 --- a/src/data/roadmaps/javascript/content/string@1RcwBHU3jzx0YxxUGZic4.md +++ b/src/data/roadmaps/javascript/content/string@1RcwBHU3jzx0YxxUGZic4.md @@ -1,6 +1,6 @@ # String -String is a primitive type that holds a sequence of characters. String in Javascript is written within a pair of single quotation marks '' or double quotation marks "". Both quotes can be used to contain a string but only if the starting quote is the same as the end quote. +String is a primitive type that holds a sequence of characters. String in Javascript is written within a pair of single quotation marks `''` or double quotation marks `""`. Both quotes can be used to contain a string but only if the starting quote is the same as the end quote. Visit the following resources to learn more: