npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mjml-pardot

v0.0.23

Published

Mailchimp compatible MJML v4 components

Downloads

23

Readme

MJML Pardot

Pardot compatible MJML components. This is a fork of mjml-mailchimp which has very similar funtionality, but for mailchimp.

Getting started

Install the package for a specific project or globally to use it like the mjml-cli.

Globally (recommended)

Globally with mjml-cli interface:

npm i -g mjml-pardot

Project

For project:

npm i mjml-pardot

When installing for a specific project you can either add the components to your own pipeline in a build.js file, or make an npm script

npm script example

// package.json
{
    "scripts": {
        "build": "mjml-pardot path/to/file.mjml -o path/to/putput.html"
    }
}

Usage

Setup

CLI

Using the cli is as easy as the mjml-cli and uses the same interface. You should check out it's docs.

the base command is mjml-pardot instead of mjml

examples

mjml-pardot
mjml-pardot --help
mjml-pardot path/to/file.mjml
mjml-pardot path/to/file.mjml -o

Project

For package.json use see Getting started.


If you decide to use a pipeline instead, you would have to register the components and their dependencies.

Example:

const mjml2html = require('mjml')
const { registerComponent } = require('mjml-core')
const { registerDependencies } = require('mjml-validator')
const {
  MpSection,
  MpImage,
  MpText,
  MpButton,
  MpColumn,
  MpSocialElement,
} = require('mjml-pardot')

registerComponent(MpSection)
registerComponent(MpImage)
registerComponent(MpText)
registerComponent(MpButton)
registerComponent(MpColumn)
registerComponent(MpSocialElement)

// register your own components
// example of a custom carousel
const MyCustomCarousel = require('./my-custom-carousel.js')
registerComponent(MyCustomCarousel)
// Tell mjml that MyCustomCarousel can be used inside MpColumn
// only if you decide to use MpColumn
registerDependencies({
    'mp-column': ['my-custom-carousel'],
})

// do your other pipeline stuff (like reading file etc.)

console.log(mjml2html(someFileContent))

This is just an example and will get you started if you need to make these components work with your own components.

Components

All components are replacements of the original mjml components. They all have the same prefix mp- instead of mj-.

Also make sure to chack out the pardot docs.

mp-button

Extends mj-button see its docs for more info.

| Attribute | Unit | Description | Default value | |-------------------|---------|-------------------------------------------------------------|---------------| | pardot-region | boolean | if true, adds pardot-region to inner text tag | false | | pardot-removable | boolean | if true, adds pardot-removable to outer table tag on button | false | | pardot-repeatable | boolean | if true, adds pardot-repeatable to out table tag on button | false |


mp-column

Extends mj-column see its docs for more info.

NOTE: repeatable and removable columns are not recommended since mjml sets the width of each column at compilation. If they are removed or repeated, the layout of the section might get messy very quickly.

| Attribute | Unit | Description | Default value | |----------------------------|---------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | pardot-repeatable-children | boolean | if true, adds pardot-repeatable to all <tr> children of the column. This also allows the user to rearrange the column, which can be very useful. | false | | pardot-removable | boolean | if true, adds pardot-removable to out div tag on button (NOT recommended). Since mjml sets the width of columns on compile time it will keep its width when removed or repeated.tton | false | | pardot-repeatable | boolean | if true, adds pardot-repeatable to out div tag on button (NOT recommended). Since mjml sets the width of columns on compile time it will keep its width when removed or repeated. | false |


mp-image

Extends mj-image see its docs for more info.

| Attribute | Unit | Description | Default value | |------------------|---------|-------------------------------------------------------|---------------| | pardot-region | boolean | If true, adds pardot-region to <img> tag | false | | pardot-removable | boolean | if true, adds pardot-removable to outer <table> | false | | pardot-responsive-image | percentage | if true, adds percentage wiidth to img tag | undefined |


mp-section

Extends mj-section see its docs for more info.

| attribute | unit | description | default value | |---|---|---|---| |pardot-removable|boolean|if true, adds a pardot-removable tag to the outer div| false| |pardot-repeatable|boolean|if true, adds a pardot-repeatable tag to the outer div| false| |pardot-region|boolean|if true, adds a pardot-region tag to the outer div| false|


mp-social-element

Extends mj-social-element see its docs for more info.

This component is made to be able to modify text and icon on mj-social-element and making them repeatable.

NOTE: repeatable might only work correctly in for mj-social tags with attribute mode="vertical".

| Attribute | Unit | Description | Default value | |-------------------|---------|----------------------------------------------------------|---------------| | pardot-region | boolean | If true, adds pardot-region to outer <tr> tag. | false | | pardot-removable | boolean | If true, adds pardot-removable to outer <tr> tag. | false | | pardot-repeatable | boolean | If true, adds pardot-repeatable to outer <tr> tag. | false |


mp-text

Extends mj-social-element see its docs for more info.

| Attribute | Unit | Description | Default value | |------------------|---------|------------------------------------------------------------|---------------| | pardot-region | boolean | If true, adds pardot-region to content <div> tag. | false | | pardot-removable | boolean | If true, adds pardot-removable to content <div> tag. | false |

Contributing

see contributing.md

Development

Make sure to install all dependencies

npm i

Building

Build all components.

npm run build

Built components should stay ignored and only be published via npm.