Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
mjml-head-html-attributes
Advanced tools
This tag allows you to add custom attributes on any html tag of the generated html, using css selectors. It's not needed for most email creations, but can be useful in some cases, i.e. editable templates.
<mjml>
<mj-head>
<mj-html-attributes>
<mj-selector path=".custom div">
<mj-html-attribute name="data-id">42</mj-html-attribute>
</mj-selector>
</mj-html-attributes>
</mj-head>
<mj-body>
<mj-section>
<mj-column>
<mj-text css-class="custom">
Hello World!
</mj-text>
</mj-column>
</mj-section>
</mj-body>
</mjml>
In the generated html, a mj-text becomes a td
, and a div
inside this td
. In this example, the td
will have the class="custom"
. Using the css selector path=".custom div"
, the div
inside the td
will get the attribute data-id="42"
.
To use this component, you will likely have to look at the generated html to see where exactly are the css-class
applied, to know which css selector you need to use to add your custom attribute on the right html tag.
You can use multiple mj-selector
inside a mj-html-attributes
, and multiple mj-html-attribute
inside a mj-selector
.
FAQs
mjml-head-html-attributes
The npm package mjml-head-html-attributes receives a total of 522,041 weekly downloads. As such, mjml-head-html-attributes popularity was classified as popular.
We found that mjml-head-html-attributes demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.