Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import { helpers } from 'mjml-core'
import merge from 'lodash/merge'
import Section from 'mjml-section'
const tagName = 'mj-wrapper'
const parentTag = ['mj-container']
const defaultMJMLDefinition = merge({}, Section.defaultMJMLDefinition, {
inheritedAttributes: [
'width'
]
})
const postRender = ($) => {
$('.mj-wrapper-outlook-open').each(function () {
$(this).replaceWith(`${helpers.startConditionalTag}
<table cellspacing="0" cellpadding="0" border="0" role="presentation"><tbody><tr><td style="width:${parseInt($(this).data('width'))}px;">
${helpers.endConditionalTag}`)
})
$('.mj-wrapper-outlook-line').each(function () {
const width = parseInt($(this).data('width'))
$(this).replaceWith(`${helpers.startConditionalTag}
</td></tr><tr><td style="width:${width}px;"></td></tr></tbody></table>