chore(learn): Applied MDX format to Chinese curriculum files (#40462)

This commit is contained in:
Randell Dawson
2020-12-16 00:37:30 -07:00
committed by GitHub
parent 873fce02a2
commit 9ce4a02a41
1665 changed files with 58741 additions and 88042 deletions

View File

@ -1,64 +1,56 @@
---
id: bad87fee1348bd9aedf08804
title: 给 HTML 添加注释
challengeType: 0
videoUrl: 'https://scrimba.com/p/pVMPUv/cGyGbca'
forumTopicId: 16782
title: 给 HTML 添加注释
---
## Description
<section id='description'>
记住:注释的开始标记是<code>&#60;!--</code>,结束标记是<code>--&#62;</code>
现在你需要在<code>h2</code>元素前终止注释。
</section>
# --description--
## Instructions
<section id='instructions'>
任务:注释掉<code>h1</code>元素和<code>p</code>元素,保留<code>h2</code>元素。
</section>
记住:注释的开始标记是`<!--`,结束标记是`-->`
## Tests
<section id='tests'>
现在你需要在`h2`元素前终止注释。
```yml
tests:
- text: '注释掉<code>h1</code>元素,这样它就从网页上消失了。'
testString: assert(($("h1").length === 0));
- text: '<code>h2</code>元素保持原样,这样网页上还能看到它。'
testString: assert(($("h2").length > 0));
- text: '注释掉<code>p</code>元素,这样它就从网页上消失了。'
testString: assert(($("p").length === 0));
- text: '确保每一个注释都以<code>--&#62;</code>结尾。'
testString: assert(code.match(/[^fc]-->/g).length > 1);
- text: '不要更改<code>h1</code>元素、<code>h2</code> 元素、<code>p</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>") );
# --instructions--
任务:注释掉`h1`元素和`p`元素,保留`h2`元素。
# --hints--
注释掉`h1`元素,这样它就从网页上消失了。
```js
assert($('h1').length === 0);
```
</section>
`h2`元素保持原样,这样网页上还能看到它。
## Challenge Seed
<section id='challengeSeed'>
<div id='html-seed'>
```html
<!--
<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
<p>在大家心目中,猫是慵懒和可爱的化身,它可以睡饱了再起来吃饭,可以逗趣小耗子,可以卖得了萌,使得了坏,这样百变的小怪兽就集结在一只宠物上,怎能不惹人怜爱。</p>
-->
```js
assert($('h2').length > 0);
```
</div>
注释掉`p`元素,这样它就从网页上消失了。
```js
assert($('p').length === 0);
```
确保每一个注释都以`-->`结尾。
</section>
```js
assert(code.match(/[^fc]-->/g).length > 1);
```
不要更改`h1`元素、`h2` 元素、`p`元素的顺序。
```js
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>'
);
```
# --solutions--
## Solution
<section id='solution'>
</section>