* 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>
36 lines
439 B
Markdown
36 lines
439 B
Markdown
---
|
|
id: 5f3326b143638ee1a09ff1e3
|
|
title: Part 4
|
|
challengeType: 0
|
|
dashedName: part-4
|
|
---
|
|
|
|
# --description--
|
|
|
|
To prepare to create some actual content, add a `body` element below the `head` element.
|
|
|
|
# --hints--
|
|
|
|
Test 1
|
|
|
|
```js
|
|
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```html
|
|
<!DOCTYPE html>
|
|
<html>
|
|
--fcc-editable-region--
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Camper Cafe Menu</title>
|
|
</head>
|
|
--fcc-editable-region--
|
|
<html>
|
|
```
|
|
|