🚀 Launch Week Day 5:Introducing Immutable Scans.Learn More →
Socket
Book a DemoInstallSign in
Socket

linkify-issues

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

linkify-issues

Linkify GitHub issue references

Source
npmnpm
Version
1.2.0
Version published
Weekly downloads
518
161.62%
Maintainers
1
Weekly downloads
 
Created
Source

linkify-issues Build Status

Linkify GitHub issue references

Install

$ npm install linkify-issues

Usage

const linkifyIssues = require('linkify-issues');

linkifyIssues('Fixes #143 and avajs/ava#1023', {
	user: 'sindresorhus',
	repo: 'dofle',
	attributes: {
		class: 'unicorn',
		multiple: ['a', 'b'],
		number: 1,
		exclude: false,
		include: true
	}
});
//=> 'Fixes <a href="https://github.com/sindresorhus/dofle/issues/143" class="unicorn" multiple="a b" number="1" include>#143</a> and <a href="https://github.com/avajs/ava/issues/1023" class="unicorn" multiple="a b" number="1" include>avajs/ava#1023</a>'

API

linkifyIssues(input, [options])

input

Type: string

Text with issue references to linkify.

options

Type: Object

user

Type: string

GitHub user.

repo

Type: string

GitHub repo.

attributes

Type: Object

HTML attributes to add to the link.

baseUrl

Type: string
Default: https://github.com

Base URL.

  • issue-regex - Regular expression for matching issue references
  • linkify-urls - Linkify URLs in text

License

MIT © Sindre Sorhus

Keywords

issue

FAQs

Package last updated on 17 Jun 2017

Did you know?

Socket

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.

Install

Related posts