Oliver Eyton-Williams f1c9b08cf3 fix(curriculum): add isHidden: false to challenges
This includes certificates (where it does nothing), but does not
include any translations.
2020-05-25 16:25:19 +05:30

1.8 KiB

id, title, challengeType, isHidden, videoUrl, forumTopicId
id title challengeType isHidden videoUrl forumTopicId
bad87fee1348bd9aedf08802 Uncomment HTML 0 false 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.

Tests

tests:
  - text: Your <code>h1</code> element should be visible on the page by uncommenting it.
    testString: assert($("h1").length > 0);
  - text: Your <code>h2</code> element should be visible on the page by uncommenting it.
    testString: assert($("h2").length > 0);
  - text: Your <code>p</code> element should be visible on the page by uncommenting it.
    testString: assert($("p").length > 0);
  - text: No trailing comment tags should be visible on the page (i.e. <code>--></code>).
    testString: assert(!$('*:contains("-->")')[1]);

Challenge Seed

<!--
<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>
-->

Solution

<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>