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-github
Advanced tools
The remark-github package is a plugin for remark (a Markdown processor) that automatically links references to GitHub issues, pull requests, and users in Markdown files. It enhances Markdown documents by converting GitHub references into clickable links, making it easier to navigate and understand the context of the references.
Linking GitHub Issues and Pull Requests
This feature allows you to automatically convert references to GitHub issues and pull requests into clickable links. In the example, the text 'This is a reference to issue #42' will be converted to a link pointing to the issue number 42 in the specified repository.
const remark = require('remark');
const remarkGithub = require('remark-github');
remark()
.use(remarkGithub, { repository: 'user/repo' })
.process('This is a reference to issue #42', function (err, file) {
if (err) throw err;
console.log(String(file));
});
Linking GitHub Users
This feature allows you to automatically convert references to GitHub users into clickable links. In the example, the text 'This is a reference to @username' will be converted to a link pointing to the GitHub profile of the specified user.
const remark = require('remark');
const remarkGithub = require('remark-github');
remark()
.use(remarkGithub, { repository: 'user/repo' })
.process('This is a reference to @username', function (err, file) {
if (err) throw err;
console.log(String(file));
});
The remark-mentions package is a plugin for remark that converts @mentions in Markdown to links. It is similar to remark-github in that it provides automatic linking for user mentions, but it does not handle issue or pull request references.
The remark-autolink-headings package is a plugin for remark that automatically adds links to headings in Markdown files. While it does not specifically target GitHub references, it provides similar functionality in terms of enhancing Markdown documents with automatic links.
The remark-slug package is a plugin for remark that adds slugs to headings in Markdown files, making them linkable. This package is useful for creating anchor links within a document, but it does not provide the GitHub-specific linking features of remark-github.
Auto-link references to commits, issues, pull-requests, and users like GitHub: Writing on GitHub.
npm:
npm install remark-github
remark-github is also available as an AMD, CommonJS, and globals module, uncompressed and compressed.
Dependencies:
var github = require('remark-github');
var remark = require('remark')().use(github);
Input:
var input = [
'* SHA: 1f2a4fb8f88a0a98ea9d0c0522cd538a9898f921',
'* User@SHA: jlord@1f2a4fb8f88a0a98ea9d0c0522cd538a9898f921',
'* User/Repository@SHA: jlord/sheetsee.js@1f2a4fb',
'* #Num: #1',
'* GH-Num: GH-1',
'* User#Num: jlord#1',
'* User/Repository#Num: jlord/sheetsee.js#1',
'* @mention',
'* And @mentioning someone else',
'* And nothing'
].join('\n');
Process:
var file = remark.process(input);
Yields:
- SHA: [`1f2a4fb`](https://github.com/wooorm/remark-github/commit/1f2a4fb8f88a0a98ea9d0c0522cd538a9898f921)
- User@SHA: [jlord@`1f2a4fb`](https://github.com/jlord/remark-github/commit/1f2a4fb8f88a0a98ea9d0c0522cd538a9898f921)
- User/Repository@SHA: [jlord/sheetsee.js@`1f2a4fb`](https://github.com/jlord/sheetsee.js/commit/1f2a4fb)
- \#Num: [#1](https://github.com/wooorm/remark-github/issues/1)
- GH-Num: [GH-1](https://github.com/wooorm/remark-github/issues/1)
- User#Num: [jlord#1](https://github.com/jlord/remark-github/issues/1)
- User/Repository#Num: [jlord/sheetsee.js#1](https://github.com/jlord/sheetsee.js/issues/1)
- [**@mention**](https://github.com/blog/821)
- And [**@mentioning**](https://github.com/mentioning) someone else
- And nothing
remark.use(commentConfig[, options])
Adds references to commits, issues, pull-requests, and users similar to how GitHub renders these in issues, comments, and pull request descriptions.
1f2a4fb
— 1f2a4fb
wooorm@1f2a4fb
— wooorm@1f2a4fb
wooorm/remark-github@1f2a4fb
— wooorm/remark-github@1f2a4fb
#1
— #1GH-1
— GH-1wooorm#1
— wooorm#1wooorm/remark-github#1
— wooorm/remark-github#1@mention
and @wooorm
— @mention and @wooormThese links are generated relative to a project. In Node this is
auto-detected by loading package.json
and looking for a repository
field. In the browser, or when overwriting this, you can pass a
repository
in options
.
FAQs
remark plugin to autolink references like in GitHub issues, PRs, and comments
The npm package remark-github receives a total of 0 weekly downloads. As such, remark-github popularity was classified as not popular.
We found that remark-github demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.