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.
remark-embed-images
Advanced tools
remark plugin to embed images with data URIs, inlining base64-encoded sources
remark plugin to embed local images as data URIs, inlining files as base64-encoded values.
This plugin is ready for the new parser in remark
(remarkjs/remark#536
).
No change is needed: it works exactly the same now as it did before!
This package is ESM only:
Node 12+ is needed to use it and it must be import
ed instead of require
d.
npm:
npm install remark-embed-images
Say we have an image, foo.png
, and next to it the following file,
example.md
:
![A PNG file](./foo.png)
And our script, example.js
, looks as follows:
import {readSync} from 'to-vfile'
import {remark} from 'remark'
import remarkEmbedImages from 'remark-embed-images'
const file = readSync('example.md')
remark()
.use(remarkEmbedImages)
.process(file)
.then((file) => {
console.log(String(file))
})
Now, running node example
yields:
![A PNG file](data:image/png;base64,iVBORw0…)
This package exports no identifiers.
The default export is remarkEmbedImages
.
unified().use(remarkEmbedImages)
Embed local images as data URIs, inlining files as base64-encoded values.
Although this plugin should be safe to use, always be careful with user input. For example, it’s possible to hide JavaScript inside images (such as GIFs, WebPs, and SVGs). User provided images open you up to a cross-site scripting (XSS) attack.
See contributing.md
in remarkjs/.github
for ways
to get started.
See support.md
for ways to get help.
This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.
FAQs
remark plugin to embed local images as data URIs
The npm package remark-embed-images receives a total of 3,255 weekly downloads. As such, remark-embed-images popularity was classified as popular.
We found that remark-embed-images demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.