docfragify
Version:
browserify plugin to allow the requiring of .html and conversion to documentFragment
31 lines (17 loc) • 491 B
Markdown
#docfragify
browserify + html -> document fragments
## Usage
first install docfragify in your project `npm install docfragify`
then include it in your browserify command line
`browserify /path/to/entry.js -p docfragify`
now, you can require `.html` files and the resulting document fragment will be returned to you
## example
span.html
```html
<span>I'm a fragment!</span>
```
entry.js
```javascript
var content = require('./span.html');
document.body.appendChild(content);
```