Oliver Eyton-Williams 0bd52f8bd1
Feat: add new Markdown parser (#39800)
and change all the challenges to new `md` format.
2020-11-27 10:02:05 -08:00

1.4 KiB

id, title, challengeType, videoUrl, forumTopicId
id title challengeType videoUrl forumTopicId
bad87fee1348bd9aedf08802 Uncomment HTML 0 https://scrimba.com/p/pVMPUv/cBmG9T7 18329

--description--

Commenting is a way that you can leave comments for other developers within your code without affecting the resulting output that is displayed to the end user.

Commenting is also a convenient way to make code inactive without having to delete it entirely.

Comments in HTML start with <!-- and end with a -->

--instructions--

Uncomment your h1, h2 and p elements.

--hints--

Your h1 element should be visible on the page by uncommenting it.

assert($('h1').length > 0);

Your h2 element should be visible on the page by uncommenting it.

assert($('h2').length > 0);

Your p element should be visible on the page by uncommenting it.

assert($('p').length > 0);

No trailing comment tags should be visible on the page (i.e. -->).

assert(!$('*:contains("-->")')[1]);

--seed--

--seed-contents--

<!--
<h1>Hello World</h1>

<h2>CatPhotoApp</h2>

<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
-->

--solutions--

<h1>Hello World</h1>

<h2>CatPhotoApp</h2>

<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>