Back to Mjml

README

packages/mjml-core/README.md

5.1.0335 B
Original Source

mjml-core

Installation

bash
npm install --save mjml-core

This is the core mjml library, composed by a set of functions for both parsing, and rendering mjml

Usage

javascript
import mjml2html from 'mjml'

async function example() {
  const result = await mjml2html(`code`)
  console.log(result)
}

example()