UNPKG

@maizzle/framework

Version:

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

15 lines 549 B
//#region src/utils/decodeStyleEntities.d.ts /** * Decode HTML entities that Vue SSR encodes inside `<style>` tags. * * Vue's `renderToString` HTML-encodes quotes and angle brackets within * style elements in templates, breaking CSS like * `@import "tailwindcss"` → `@import &quot;tailwindcss&quot;`. * * `&amp;` is decoded last so previously-decoded entities are not * re-processed. */ declare function decodeStyleEntities(s: string): string; //#endregion export { decodeStyleEntities }; //# sourceMappingURL=decodeStyleEntities.d.ts.map