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>
This commit is contained in:
Surya Kanta Ghosh
2023-02-27 11:40:18 +05:30
committed by GitHub
parent a936806a22
commit 83cae1d78e

View File

@@ -19,7 +19,11 @@ Quotes are not the only characters that can be <dfn>escaped</dfn> inside a strin
Assign the following three lines of text into the single variable `myStr` using escape sequences.
<blockquote>FirstLine<br>    \SecondLine<br>ThirdLine</blockquote>
<pre>
FirstLine
    \SecondLine
ThirdLine
</pre>
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.