html-to-element
Version:
Converts HTML from string to js dom element.
28 lines (20 loc) • 586 B
Markdown
## HTML-to-Element
#### What does HTML-to-Element?
In one short sentence: "HTML-to-Element converts HTML from a string to a js dom element."
#### Install
```
npm install html-to-element -S
```
#### Import
```javascript
import htmlToElement from 'html-to-element';
```
### Examples:
```javascript
import htmlToElement from 'html-to-element';
let element = htmlToElement(`<div id="example">
<p>Example</p>
<div style="width:200px">Click me!</div>
</div>`);
document.body.appendChild(element);
```