From f7da3e2a34168ec78c700d9d3b16b67308c184e1 Mon Sep 17 00:00:00 2001 From: Kevin Powell Date: Tue, 13 Aug 2019 08:18:34 -0500 Subject: [PATCH] Fix typo in simple example README And add unpkg reference. --- README.md | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 4d3ca53..5f7c57d 100644 --- a/README.md +++ b/README.md @@ -22,17 +22,20 @@ npm install --save @boulevard/vampire This example demonstrates moving content to a nameless slot. -```typescript -const div = Object.assign(document.createElement('div'), { - innerHTML: ` - -

Example

- -
- ` -}; - -div.appendChild(document.createTextNode('👻')); +```html + + ``` The above script will produce the following output.