
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
remark-mark-plus
Advanced tools
This plugin parses ==custom Markdown syntax== to the HTML `<mark>` element. It adds a new node type to the [mdast](https://github.com/syntax-tree/mdast/blob/master/readme.md) produced by [remark](https://github.com/remarkjs/remark): `mark` and stringifies
This plugin parses ==custom Markdown syntax== to the HTML <mark> element.
It adds a new node type to the mdast produced by remark: mark
If you are using rehype, the stringified HTML result will be <mark>.
Click ==File > Open== to open the file.
Mark (Parent) represents a reference to a user.
interface Mark <: Parent {
type: "mark";
}
For example, the following markdown:
==File > Open==
Yields:
{
type: 'mark',
children: [{
type: 'text',
value: 'File > Open'
}]
}
This plugin is compatible with rehype. Mark mdast nodes will become <mark>contents</mark>.
npm:
npm install remark-mark-plus
Dependencies:
const unified = require('unified')
const remarkParse = require('remark-parse')
const stringify = require('rehype-stringify')
const remark2rehype = require('remark-rehype')
const remarkMark = require('remark-mark-plus')
Usage:
unified()
.use(remarkParse)
.use(remarkMark)
.use(remark2rehype)
.use(stringify)
MIT © [Zeste de Savoir][zds]
FAQs
This plugin parses ==custom Markdown syntax== to the HTML `<mark>` element. It adds a new node type to the [mdast](https://github.com/syntax-tree/mdast/blob/master/readme.md) produced by [remark](https://github.com/remarkjs/remark): `mark` and stringifies
The npm package remark-mark-plus receives a total of 458 weekly downloads. As such, remark-mark-plus popularity was classified as not popular.
We found that remark-mark-plus 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.