From 83cae1d78eb0f897da7ed9f25f7eac1491e08e80 Mon Sep 17 00:00:00 2001 From: Surya Kanta Ghosh <52543164+atnakayrus@users.noreply.github.com> Date: Mon, 27 Feb 2023 11:40:18 +0530 Subject: [PATCH] fix(curriculum): ensure left alignment of output in translations (#49524) * feat: change quotes into pre Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com> Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com> --------- Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com> --- .../basic-javascript/escape-sequences-in-strings.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/escape-sequences-in-strings.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/escape-sequences-in-strings.md index 2a932a7708f..0791e5ddafe 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/escape-sequences-in-strings.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/escape-sequences-in-strings.md @@ -19,7 +19,11 @@ Quotes are not the only characters that can be escaped inside a strin Assign the following three lines of text into the single variable `myStr` using escape sequences. -
FirstLine+
\SecondLine
ThirdLine
+FirstLine + \SecondLine +ThirdLine +You will need to use escape sequences to insert special characters correctly. You will also need to follow the spacing as it looks above, with no spaces between escape sequences or words.