const fromString = require('from2-string') const favicon = '' module.exports = createHtml function createHtml (opt) { opt = opt || {} return fromString([ '', '', '', opt.title ? ('' + opt.title + '') : '', '', opt.base ? ('') : '', opt.css ? ('') : '', opt.favicon ? favicon : '', '', opt.entry ? ('') : '', '', '' ].join('')) }