Files
Naomi Carrigan 16e7cdedb1 feat: migrate filenames to IDs (#45146)
* feat: migrate filenames to IDs

* feat: migrate balance sheet file names

* revert: no id name for cert projects

* fix: i swear i know what i'm doing
2022-03-02 09:06:00 -06:00

953 B

id, title, challengeType, dashedName
id title challengeType dashedName
60f027099a15b00485563dd2 Step 2 0 step-2

--description--

Add opening and closing html tags below the DOCTYPE so you have a place to start putting some code.

--hints--

Your DOCTYPE declaration should be at the beginning of your HTML.

assert(__helpers.removeHtmlComments(code).match(/^\s*<!DOCTYPE\s+html\s*>/i));

Your html element should have an opening tag.

assert(code.match(/<html\s*>/gi));

Your html element should have a closing tag.

assert(code.match(/<\/html\s*>/));

Your html tags should be in the correct order.

assert(code.match(/<html\s*>\s*<\/html\s*>/));

You should only have one html element.

// Possibly a redundant test, as browser fixes this
assert(document.querySelectorAll('html').length === 1);

--seed--

--seed-contents--

--fcc-editable-region--
<!DOCTYPE html>

--fcc-editable-region--