diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities.english.md index c4f3aefa75..301e43dc20 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities.english.md @@ -21,19 +21,19 @@ Convert the characters &, <, >, "convertHTML("Dolce & Gabbana") should return Dolce &amp; Gabbana. + - text: convertHTML("Dolce & Gabbana") should return "Dolce &amp; Gabbana". testString: assert.match(convertHTML("Dolce & Gabbana"), /Dolce & Gabbana/); - - text: convertHTML("Hamburgers < Pizza < Tacos") should return Hamburgers &lt; Pizza &lt; Tacos. + - text: convertHTML("Hamburgers < Pizza < Tacos") should return "Hamburgers &lt; Pizza &lt; Tacos". testString: assert.match(convertHTML("Hamburgers < Pizza < Tacos"), /Hamburgers < Pizza < Tacos/); - - text: convertHTML("Sixty > twelve") should return Sixty &gt; twelve. + - text: convertHTML("Sixty > twelve") should return "Sixty &gt; twelve". testString: assert.match(convertHTML("Sixty > twelve"), /Sixty > twelve/); - - text: convertHTML('Stuff in "quotation marks"') should return Stuff in &quot;quotation marks&quot;. + - text: convertHTML('Stuff in "quotation marks"') should return "Stuff in &quot;quotation marks&quot;". testString: assert.match(convertHTML('Stuff in "quotation marks"'), /Stuff in "quotation marks"/); - - text: convertHTML("Schindler's List") should return Schindler&apos;s List. + - text: convertHTML("Schindler's List") should return "Schindler&apos;s List". testString: assert.match(convertHTML("Schindler's List"), /Schindler's List/); - - text: convertHTML("<>") should return &lt;&gt;. + - text: convertHTML("<>") should return "&lt;&gt;". testString: assert.match(convertHTML('<>'), /<>/); - - text: convertHTML("abc") should return abc. + - text: convertHTML("abc") should return "abc". testString: assert.strictEqual(convertHTML('abc'), 'abc'); ```