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 local images as data URIs.
This package is a unified (remark) plugin that inlines images as data URIs.
You can use this package when you want to move markdown that references local images around more easily, because images will be inlined. This does makes the markdown quite hard to read and isn’t supported everywhere (such as GitHub), because data URIs might result in security risks.
This package is ESM only. In Node.js (version 18+), install with npm:
npm install remark-embed-images
In Deno with esm.sh
:
import remarkEmbedImages from 'https://esm.sh/remark-embed-images@5'
In browsers with esm.sh
:
<script type="module">
import remarkEmbedImages from 'https://esm.sh/remark-embed-images@5?bundle'
</script>
Say we have an image foo.png
and next to it the following
file example.md
:
![A pink square](./foo.png)
…and a module example.js
:
import {remark} from 'remark'
import remarkEmbedImages from 'remark-embed-images'
import {read} from 'to-vfile'
const file = await read('example.md')
await remark()
.use(remarkEmbedImages)
.process(file)
console.log(String(file))
…then running node example.js
yields:
![A pink square](data:image/png;base64,iVBORw0…)
This package exports no identifiers.
The default export is remarkEmbedImages
.
unified().use(remarkEmbedImages)
Embed local images as data URIs.
There are no options.
Transform (Transformer
).
This package is fully typed with TypeScript. It exports no additional types.
Projects maintained by the unified collective are compatible with maintained versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line, remark-embed-images@5
,
compatible with Node.js 18.
This plugin works with unified
version 6+ and remark
version 7+.
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.
remarkjs/remark-images
— add a simpler image syntaxremarkjs/remark-unwrap-images
— remove the wrapping paragraph for imagesSee 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.