UNPKG

@maizzle/framework

Version:

Maizzle is a framework that helps you quickly build HTML emails with Tailwind CSS.

15 lines (12 loc) 362 B
import posthtml from 'posthtml' import posthtmlMso from 'posthtml-mso' export default function posthtmlPlugin(options = {}) { return posthtmlMso(options) } export async function useMso(html = '', options = {}, posthtmlOptions = {}) { return posthtml([ posthtmlPlugin(options) ]) .process(html, posthtmlOptions) .then(result => result.html) }