Files
freeCodeCamp/tools/challenge-md-parser/mdx/__fixtures__/with-erm-in-solution.md
Oliver Eyton-Williams 0bd52f8bd1 Feat: add new Markdown parser (#39800)
and change all the challenges to new `md` format.
2020-11-27 10:02:05 -08:00

45 lines
342 B
Markdown

# --seed--
## --seed-contents--
```html
<html>
<body>
</body>
</html>
```
```css
body {
background: green;
}
```
```js
var x = 'y';
```
# --solutions--
::id{#html-key}
```html
<html>
<body>
</body>
</html>
```
```css
body {
--fcc-editable-region--
background: white;
--fcc-editable-region--
}
```
```js
var x = 'y';
```