UNPKG

build-email

Version:

Framework & CLI Build Email - thiết kế HTML Email Template với Tailwind CSS, kế thừa Maizzle.

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) }