Files
freeCodeCamp/tools/challenge-parser/parser/__fixtures__/with-c-code.md

43 lines
293 B
Markdown

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