Files
freeCodeCamp/tools/challenge-parser/parser/__fixtures__/with-after-all-hook.md
2025-09-11 10:46:57 -05:00

41 lines
398 B
Markdown

# --description--
Paragraph 1
```html
code example
```
# --after-all--
```js
// after all code
function teardown() {
return 'cleaned up';
}
teardown();
```
# --hints--
First hint
```js
// test code
```
Second hint with <code>code</code>
```js
// more test code
```
Third *hint* with <code>code</code> and `inline code`
```js
// more test code
if(let x of xs) {
console.log(x);
}
```