mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-18 01:00:29 -05:00
Co-authored-by: sembauke <semboot699@gmail.com> Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
44 lines
473 B
Markdown
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>
|
|
```
|