feat(curriculum): restore seed + solution to Chinese (#40683)

* feat(tools): add seed/solution restore script

* chore(curriculum): remove empty sections' markers

* chore(curriculum): add seed + solution to Chinese

* chore: remove old formatter

* fix: update getChallenges

parse translated challenges separately, without reference to the source

* chore(curriculum): add dashedName to English

* chore(curriculum): add dashedName to Chinese

* refactor: remove unused challenge property 'name'

* fix: relax dashedName requirement

* fix: stray tag

Remove stray `pre` tag from challenge file.

Signed-off-by: nhcarrigan <nhcarrigan@gmail.com>

Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
This commit is contained in:
Oliver Eyton-Williams
2021-01-13 03:31:00 +01:00
committed by GitHub
parent 0095583028
commit ee1e8abd87
4163 changed files with 57505 additions and 10540 deletions

View File

@@ -1,5 +1,8 @@
---
id: bd7123c8c441eddfaeb5bdef
title: 向HTML Elements说你好
challengeType: 0
videoUrl: 'https://scrimba.com/p/pVMPUv/cE8Gpt2'
forumTopicId: 18276
---
@@ -19,7 +22,32 @@ forumTopicId: 18276
```yml
tests:
- text: 你的<code>h1</code>元素应该有“Hello World”文本。
testString: 'assert.isTrue((/hello(\s)+world/gi).test($("h1").text()), "Your <code>h1</code> element should have the text "Hello World".");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='html-seed'>
```js
/* Add your code below this line */
// Add your code above this line */
```
</div>
</section>
## Solution
<section id='solution'>
```html
<h1>Hello World</h1>
```
</section>

View File

@@ -2,7 +2,7 @@
id: bd7123c8c441eddfaeb5bdef
title: 向HTML Elements说你好
challengeType: 0
videoUrl: ''
videoUrl: 'https://scrimba.com/p/pVMPUv/cE8Gpt2'
forumTopicId: 18276
---
@@ -35,7 +35,12 @@ tests:
```html
<h1>Hello</h1>
<!-- Add your code below this line -->
<!-- Add your code above this line -->
<style>
/* change code below this line */
/* change code above this line */
</style>
```
</div>
@@ -47,7 +52,7 @@ tests:
## Solution
<section id='solution'>
```js
// solution required
```html
<h1>Hello World</h1>
```
</section>

View File

@@ -23,7 +23,7 @@ title: 向HTML Elements说你好
```yml
tests:
- text: 你的<code>h1</code>元素应该有“Hello World”文本。
testString: assert.isTrue((/hello(\s)+world/gi).test($('h1').text()));
testString: 'assert.isTrue((/hello(\s)+world/gi).test($("h1").text()), "Your <code>h1</code> element should have the text "Hello World".");'
```