* 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>
934 B
934 B
id, title, challengeType, dashedName
id | title | challengeType | dashedName |
---|---|---|---|
5d8a4cfbe6b6180ed9a1c9e1 | Part 4 | 0 | part-4 |
--description--
Below the title, link to your external stylesheet by adding a link
element with a rel
attribute of stylesheet
and an href
attribute of ./dashboard.css
. Remember that link elements do not need a closing tag. You will be adding some styles to this file shortly.
--hints--
test-text
const link = code.match(/<link\s+[\s\S]+?[^>]>/gi)[0];
assert(
/rel\s*=\s*('|")\s*stylesheet\s*\1/gi.test(link) &&
/href\s*=\s*('|")\s*(.\/)?dashboard\.css\s*\1/gi.test(link)
);
--seed--
--seed-contents--
<!DOCTYPE html>
<html>
<head>
<title>D3 Dashboard</title>
</head>
<body>
</body>
</html>
--solutions--
<!DOCTYPE html>
<html>
<head>
<title>D3 Dashboard</title>
<link rel="stylesheet" href="./dashboard.css">
</head>
<body>
</body>
</html>