Files
freeCodeCamp/tools/challenge-parser/parser/__fixtures__/with-interactive.md
Shaun Hamilton 7c20027732 feat(client): add challenge interactive editor (#61805)
Co-authored-by: sembauke <semboot699@gmail.com>
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
2025-10-09 09:34:03 +05:30

44 lines
473 B
Markdown

# --interactive--
Normal markdown
```html
<div>This is NOT an interactive element</div>
```
:::interactive_editor
```js
console.log('Interactive JS');
```
:::
:::interactive_editor
```html
<div>This is an interactive element</div>
```
:::
```html
<div>This is not interactive</div>
```
:::interactive_editor
```html
<div>This is an interactive element</div>
```
```js
console.log('Interactive JS');
```
:::
```html
<div>This is also not interactive</div>
```