
Research
/Security News
Mini Shai-Hulud Campaign Hits Red Hat Cloud Services npm Packages
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.
markdown-it-blockquote-cite
Advanced tools
A markdown-it plugin that handles attributions in blockquotes with <cite> tags.
This is a fork from https://github.com/bitcrowd/markdown-it-attribution which adjusts the functionality to our needs, removes most of the features we don't use and refactors the code a bit. It's a very specialized version of the original plugin, so please use at your own risk.
Namely this plugin allows to generate proper <blockquote> tags with nested <cite> tags, just like this:
> Quoted text here. Lorem ipsom etc
> More quoted text here. Lorem ipsom etc
> --- Ms. Cited Name-Here
Will be rendered as:
<blockquote>
<p>Quoted text here. Lorem ipsum etc</p>
<p>More quoted text here. Lorem ipsum etc</p>
<cite>Ms. Cited Name-Here</cite>
</blockquote>
yarn add bitcrowd/markdown-it-blockquote-cite#master
If you don't use yarn:
npm install --save bitcrowd/markdown-it-blockquote-cite#master
import Markdown from 'markdown-it';
import MarkdownBlockquoteCite from './markdown-it-blockquote-cite';
const mdit = new Markdown().use(MarkdownBlockquoteCite, { attributionPrefix: '---' });
const blockquote = [
'> Quoted text here. Lorem ipsom etc',
'> More quoted text here. Lorem ipsom etc',
'> --- Ms. Cited Name-Here'
];
mdit.render(blockquote.join('\n'));
Options are optional, attributionPrefix defaults to --;
FAQs
A markdown-it plugin that handles attributions in blockquotes with <cite> tags.
We found that markdown-it-blockquote-cite 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.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.

Security News
The Rust project is moving toward formal rules on LLM use in contributions after months of internal debate over maintainer burden, code quality, and contributor experience.