--- id: a6b0bb188d873cb2c8729495 title: Convert HTML Entities isRequired: true challengeType: 5 videoUrl: '' localeTitle: Преобразование HTML-объектов --- ## Description <section id="description"> Преобразуйте символы <code>&</code> , <code><</code> , <code>></code> , <code>"</code> (двойная кавычка) и <code>'</code> (апострофа) в строку в соответствующие HTML-объекты. Не забудьте использовать <a href="http://forum.freecodecamp.org/t/how-to-get-help-when-you-are-stuck/19514" target="_blank">Read-Search-Ask,</a> если вы застряли. собственный код. </section> ## Instructions <section id="instructions"> </section> ## Tests <section id='tests'> ```yml tests: - text: <code>convertHTML("Dolce & Gabbana")</code> должен возвращать <code>Dolce &amp; Gabbana</code> . testString: 'assert.match(convertHTML("Dolce & Gabbana"), /Dolce & Gabbana/, "<code>convertHTML("Dolce & Gabbana")</code> should return <code>Dolce & Gabbana</code>.");' - text: <code>convertHTML("Hamburgers < Pizza < Tacos")</code> должны вернуть <code>Hamburgers &lt; Pizza &lt; Tacos</code> . testString: 'assert.match(convertHTML("Hamburgers < Pizza < Tacos"), /Hamburgers < Pizza < Tacos/, "<code>convertHTML("Hamburgers < Pizza < Tacos")</code> should return <code>Hamburgers < Pizza < Tacos</code>.");' - text: <code>convertHTML("Sixty > twelve")</code> должен возвращать <code>Sixty &gt; twelve</code> . testString: 'assert.match(convertHTML("Sixty > twelve"), /Sixty > twelve/, "<code>convertHTML("Sixty > twelve")</code> should return <code>Sixty > twelve</code>.");' - text: '<code>convertHTML('Stuff in "quotation marks"')</code> должен возвращать <code>Stuff in &quot;quotation marks&quot;</code> ,' testString: 'assert.match(convertHTML("Stuff in "quotation marks""), /Stuff in "quotation marks"/, "<code>convertHTML('Stuff in "quotation marks"')</code> should return <code>Stuff in "quotation marks"</code>.");' - text: '<code>convertHTML("Schindler's List")</code> должен возвращать <code>Schindler&apos;s List</code> .' testString: 'assert.match(convertHTML("Schindler"s List"), /Schindler's List/, "<code>convertHTML("Schindler's List")</code> should return <code>Schindler's List</code>.");' - text: '<code>convertHTML("<>")</code> должен возвращать <code>&lt;&gt;</code> ,' testString: 'assert.match(convertHTML("<>"), /<>/, "<code>convertHTML("<>")</code> should return <code><></code>.");' - text: <code>convertHTML("abc")</code> должен возвращать <code>abc</code> . testString: 'assert.strictEqual(convertHTML("abc"), "abc", "<code>convertHTML("abc")</code> should return <code>abc</code>.");' ``` </section> ## Challenge Seed <section id='challengeSeed'> <div id='js-seed'> ```js function convertHTML(str) { // :) return str; } convertHTML("Dolce & Gabbana"); ``` </div> </section> ## Solution <section id='solution'> ```js // solution required ``` </section>