UNPKG

html2amp

Version:

Simple converter from HTML into AMP(Accelerated Mobile Pages)

13 lines (10 loc) 285 B
const callbacks = (htmlString, options = {}) => { const plugins = options.htmlPlugins || [] return plugins.reduce((html, plugin) => { return plugin(html, options) }, htmlString) } const html = ($, options) => { return callbacks($.html(), options) } module.exports = html