My awesome site!

HTML/CSS examples

Usage

```html
<div class="foo">
  <p>Lorem ipsum</p>
</div>
```

would render:

Lorem ipsum

<div class="foo">
  <p>Lorem ipsum</p>
</div>

Tags can be used to control the code preview:

```html nopreview
  markup
```
  • nopreview - Render without live preview
  • nomarkup - Render without source

Bonus: this works out-of-the-box with Prettier! \o/

Examples

Default options, shows both running example and the markup used to generate it.

<button type="button" onclick="alert('cluck cluck!')">click me!</button>

Without preview (nopreview tag):

<button type="button" onclick="alert('cluck cluck!')">click me!</button>

Without markup (nomarkup tag):