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.
MailBrush lets you add syntax highlighting to code snippets so they can be used in your email templates.
Instead of plain ol’ snippets in your email templates that look like this:
{ "key": "value", "key2": "value 2" }
Your snippets will now look like this:
npm install mailbrush --save
const mailbrush = require('mailbrush');
// Specify options
const options = {
language: 'json',
cssOptions: {
backgroundColor: 'pink'
}
};
// The code snippet you want to beautify
const snippet = `{
"key": "value",
"key2": "value 2"
}`
// Make some rainbows
mailbrush.convert(snippet, options, (html) => {
// Returns HTML with inlined CSS for email client compatibility
console.log(html);
});
mailbrush.convert( snippet, [options], [callback] )
Type: string
The code snippet to add syntax highlighting to.
Type: object
Default:
{
language: 'markup', // The language of your code snippet. Supports markup, CSS, Javascript, JSON, PHP, HTTP, and bash.
cssOptions: {
backgroundColor: '#f5f2f0',
padding: '10px 15px',
fontFamily: 'Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace',
fontSize: '12px',
lineHeight: '1.5',
tabSize: '2',
fontColorBase: '#000',
fontColorComments: 'slategray',
fontColorPunctuation: '#999',
fontColorTags: '#905',
fontColorStrings: '#690',
fontColorOperators: '#a67f59',
fontColorKeywords: '#07a',
fontColorFunctions: '#DD4A68',
fontColorImportant: '#e90'
}
}
Type: function( string )
The callback function contains the highlighted HTML snippet. Just pop that into your email template and you’re ready! 🎉
Read through our guidelines for contributing to help make contributions quick and easy.
We built MailBrush as a complete toolset to streamline building and updating a set of consistent transactional emails.
FAQs
Syntax highlighter for generating email friendly code snippets.
We found that mailbrush demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.