This commit adds the pre-existing challenge guide topics in the forum to the forntmatter of their challenge markdown files.
		
			
				
	
	
	
		
			2.0 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			2.0 KiB
		
	
	
	
	
	
	
	
id, title, challengeType, videoUrl, forumTopicId
| id | title | challengeType | videoUrl | forumTopicId | 
|---|---|---|---|---|
| bad87fee1348bd9aedf08804 | Comment out HTML | 0 | https://scrimba.com/p/pVMPUv/cGyGbca | 16782 | 
Description
<!-- and to end a comment, you need to use -->
Here you'll need to end the comment before your h2 element begins.
Instructions
h1 element and your p element, but not your h2 element.
Tests
tests:
  - text: Comment out your <code>h1</code> element so that it is not visible on your page.
    testString: assert(($("h1").length === 0));
  - text: Leave your <code>h2</code> element uncommented so that it is visible on your page.
    testString: assert(($("h2").length > 0));
  - text: Comment out your <code>p</code> element so that it is not visible on your page.
    testString: assert(($("p").length === 0));
  - text: Be sure to close each of your comments with <code>--></code>.
    testString: assert(code.match(/[^fc]-->/g).length > 1);
  - text: Do not change the order of the <code>h1</code> <code>h2</code> or <code>p</code> in the code.
    testString: assert((code.match(/<([a-z0-9]){1,2}>/g)[0]==="<h1>" && code.match(/<([a-z0-9]){1,2}>/g)[1]==="<h2>" && code.match(/<([a-z0-9]){1,2}>/g)[2]==="<p>") );
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> -->