Skip to content

Commit 503a4f8

Browse files
committed
Hypercontext -> nfrasser
1 parent fb3ffea commit 503a4f8

File tree

28 files changed

+83
-81
lines changed

28 files changed

+83
-81
lines changed

CONTRIBUTING.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
**Note:** This guide is a work in progress. Feel free to [submit an issue](https://github.com/Hypercontext/linkifyjs/issues/new) if anything is confusing or unclear.
3+
**Note:** This guide is a work in progress. Feel free to [submit an issue](https://github.com/nfrasser/linkifyjs/issues/new) if anything is confusing or unclear.
44

55
## How linkify works
66

@@ -14,19 +14,19 @@ The second stage, the parser, takes this array of tokens and aggregates them int
1414

1515
A multitoken is either a link or not a link. Core linkify comes with these multitokens
1616

17-
* **`Text`** is plain text (that contains no linkable entities)
18-
* **`Nl`** represents a single newline character
19-
* **`Email`** email address
20-
* **`URL`**
17+
- **`Text`** is plain text (that contains no linkable entities)
18+
- **`Nl`** represents a single newline character
19+
- **`Email`** email address
20+
- **`URL`**
2121

2222
The latter two are converted to links. `Nl` is in some cases converted to a `<br>` HTML tag.
2323

2424
You can use the Token class system to [create plugins](#building-plugins).
2525

2626
## Style
2727

28-
* ES6 Syntax (except tests for now)
29-
* Hard tabs with a width of 4 characters
28+
- ES6 Syntax (except tests for now)
29+
- Hard tabs with a width of 4 characters
3030

3131
Keep your changes consistent with what's already there.
3232

@@ -56,22 +56,22 @@ This transpiles ES6 to ES5 (via [Babel](http://babeljs.io/)) from `src/` into `d
5656

5757
These tools are used for testing linkify:
5858

59-
* [Mocha](https://mochajs.org/) is our primary test case framework
60-
* [ESLint](https://eslint.org) for code linting
61-
* [Istanbul](https://istanbul.js.org/) for code coverage analysis
62-
* [Karma](http://karma-runner.github.io/) is our browser test runner
63-
* [BrowserStack](https://www.browserstack.com) for cross-browser testing
59+
- [Mocha](https://mochajs.org/) is our primary test case framework
60+
- [ESLint](https://eslint.org) for code linting
61+
- [Istanbul](https://istanbul.js.org/) for code coverage analysis
62+
- [Karma](http://karma-runner.github.io/) is our browser test runner
63+
- [BrowserStack](https://www.browserstack.com) for cross-browser testing
6464

6565
These are all configured to run in npm scripts. Tasks `npm test` and `npm run lint` are the most basic you can run. Other tasks include:
6666

67-
* `npm run build` converts the `src` ES source code into browser- and Node.js- compatible JavaScript. It also outputs TypeScript definitions.
68-
* `npm run clean` removes all generated files
69-
* `npm run dist` cleans, builds and copies the final browser distribution bundle into the root `dist` directory
67+
- `npm run build` converts the `src` ES source code into browser- and Node.js- compatible JavaScript. It also outputs TypeScript definitions.
68+
- `npm run clean` removes all generated files
69+
- `npm run dist` cleans, builds and copies the final browser distribution bundle into the root `dist` directory
7070

7171
### Building plugins
7272

7373
**Caution:** The plugin development API is in its very early stages and only supports very basic plugins. Updated features, APIs, and docs are in the works.
7474

75-
Check out the sample [Hashtag plugin](https://github.com/Hypercontext/linkifyjs/blob/main/packages/linkify-plugin-hashtag/src/hashtag.js) for an example. Check out the [Keyword plugin](https://github.com/Hypercontext/linkifyjs/blob/main/packages/linkify-plugin-keyword/src/keyword.js) for more advanced usage.
75+
Check out the sample [Hashtag plugin](https://github.com/nfrasser/linkifyjs/blob/main/packages/linkify-plugin-hashtag/src/hashtag.js) for an example. Check out the [Keyword plugin](https://github.com/nfrasser/linkifyjs/blob/main/packages/linkify-plugin-keyword/src/keyword.js) for more advanced usage.
7676

7777
Register a new plugin with [`linkify.registerPlugin()`](https://linkify.js.org/docs/linkifyjs.html#linkifyregisterplugin-name-plugin).

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021 SoapBox Innovations Inc.
1+
Copyright (c) 2024 Nick Frasser
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Linkify
22

33
[![npm version](https://badge.fury.io/js/linkifyjs.svg)](https://www.npmjs.com/package/linkifyjs)
4-
[![CI](https://github.com/Hypercontext/linkifyjs/actions/workflows/ci.yml/badge.svg)](https://github.com/Hypercontext/linkifyjs/actions/workflows/ci.yml)
4+
[![CI](https://github.com/nfrasser/linkifyjs/actions/workflows/ci.yml/badge.svg)](https://github.com/nfrasser/linkifyjs/actions/workflows/ci.yml)
55
[![BrowserStack Status](https://automate.browserstack.com/badge.svg?badge_key=ZVZXNFhhQ044a01nQStVeWJXSng1b01MTWFpZlZRZVg1WnAvdE9aVE9LVT0tLWZpekx6ZHUrZ2E0dDRHMDZRMnJNQlE9PQ==--4d91db279fbd0475f8d8e4b221b5a4c1e0c6a76e)](https://automate.browserstack.com/public-build/ZVZXNFhhQ044a01nQStVeWJXSng1b01MTWFpZlZRZVg1WnAvdE9aVE9LVT0tLWZpekx6ZHUrZ2E0dDRHMDZRMnJNQlE9PQ==--4d91db279fbd0475f8d8e4b221b5a4c1e0c6a76e)
6-
[![Coverage Status](https://coveralls.io/repos/github/Hypercontext/linkifyjs/badge.svg?branch=main)](https://coveralls.io/github/Hypercontext/linkifyjs?branch=main)
6+
[![Coverage Status](https://coveralls.io/repos/github/nfrasser/linkifyjs/badge.svg?branch=main)](https://coveralls.io/github/nfrasser/linkifyjs?branch=main)
77

88
Linkify is a JavaScript plugin. Use Linkify to find links in plain-text and
99
convert them to HTML &lt;a&gt; tags. It automatically highlights URLs,
@@ -40,7 +40,7 @@ convert them to HTML &lt;a&gt; tags. It automatically highlights URLs,
4040

4141
[View full documentation](https://linkify.js.org/docs/).
4242

43-
Download the [latest release](https://github.com/Hypercontext/linkifyjs/releases) for direct use in the browser, or install via [NPM](https://www.npmjs.com/):
43+
Download the [latest release](https://github.com/nfrasser/linkifyjs/releases) for direct use in the browser, or install via [NPM](https://www.npmjs.com/):
4444

4545
```
4646
npm install linkifyjs linkify-html
@@ -150,20 +150,20 @@ supported.
150150

151151
## Downloads
152152

153-
Download the [**latest release**](https://github.com/Hypercontext/linkifyjs/releases)
153+
Download the [**latest release**](https://github.com/nfrasser/linkifyjs/releases)
154154

155155
## API Documentation
156156

157157
View full documentation at [linkify.js.org/docs](https://linkify.js.org/docs/)
158158

159159
## Contributing
160160

161-
Check out [CONTRIBUTING.md](https://github.com/Hypercontext/linkifyjs/blob/main/CONTRIBUTING.md).
161+
Check out [CONTRIBUTING.md](https://github.com/nfrasser/linkifyjs/blob/main/CONTRIBUTING.md).
162162

163163
## License
164164

165165
MIT
166166

167167
## Authors
168168

169-
Linkify is made with ❤️ by [Hypercontext](https://hypercontext.com/) and [@nfrasser](https://github.com/nfrasser)
169+
Linkify is made with ❤️ by [@nfrasser](https://github.com/nfrasser)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Intelligent link recognition, made easy",
55
"repository": {
66
"type": "git",
7-
"url": "git+https://github.com/Hypercontext/linkifyjs.git"
7+
"url": "git+https://github.com/nfrasser/linkifyjs.git"
88
},
99
"scripts": {
1010
"build": "npm run build --workspaces",
@@ -26,7 +26,7 @@
2626
"test:ci2": "karma start test/ci2.conf.js --single-run",
2727
"tlds": "node tasks/update-tlds.js"
2828
},
29-
"author": "Hypercontext",
29+
"author": "Nick Frasser (https://nfrasser.com)",
3030
"license": "MIT",
3131
"devDependencies": {
3232
"@babel/core": "^7.13.10",

packages/linkify-element/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021 SoapBox Innovations Inc.
1+
Copyright (c) 2024 Nick Frasser
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

packages/linkify-element/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"repository": {
1515
"type": "git",
16-
"url": "git+https://github.com/Hypercontext/linkifyjs.git",
16+
"url": "git+https://github.com/nfrasser/linkifyjs.git",
1717
"directory": "packages/linkify-element"
1818
},
1919
"keywords": [
@@ -23,10 +23,10 @@
2323
"email",
2424
"browser"
2525
],
26-
"author": "Hypercontext",
26+
"author": "Nick Frasser (https://nfrasser.com)",
2727
"license": "MIT",
2828
"bugs": {
29-
"url": "https://github.com/Hypercontext/linkifyjs/issues"
29+
"url": "https://github.com/nfrasser/linkifyjs/issues"
3030
},
3131
"homepage": "https://linkify.js.org",
3232
"peerDependencies": {

packages/linkify-html/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021 SoapBox Innovations Inc.
1+
Copyright (c) 2024 Nick Frasser
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

packages/linkify-html/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"repository": {
1616
"type": "git",
17-
"url": "git+https://github.com/Hypercontext/linkifyjs.git",
17+
"url": "git+https://github.com/nfrasser/linkifyjs.git",
1818
"directory": "packages/linkify-html"
1919
},
2020
"keywords": [
@@ -23,10 +23,10 @@
2323
"url",
2424
"email"
2525
],
26-
"author": "Hypercontext",
26+
"author": "Nick Frasser (https://nfrasser.com)",
2727
"license": "MIT",
2828
"bugs": {
29-
"url": "https://github.com/Hypercontext/linkifyjs/issues"
29+
"url": "https://github.com/nfrasser/linkifyjs/issues"
3030
},
3131
"homepage": "https://linkify.js.org",
3232
"devDependencies": {

packages/linkify-jquery/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021 SoapBox Innovations Inc.
1+
Copyright (c) 2024 Nick Frasser
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

packages/linkify-jquery/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"repository": {
1515
"type": "git",
16-
"url": "git+https://github.com/Hypercontext/linkifyjs.git",
16+
"url": "git+https://github.com/nfrasser/linkifyjs.git",
1717
"directory": "packages/linkify-jquery"
1818
},
1919
"keywords": [
@@ -24,10 +24,10 @@
2424
"jquery",
2525
"browser"
2626
],
27-
"author": "Hypercontext",
27+
"author": "Nick Frasser (https://nfrasser.com)",
2828
"license": "MIT",
2929
"bugs": {
30-
"url": "https://github.com/Hypercontext/linkifyjs/issues"
30+
"url": "https://github.com/nfrasser/linkifyjs/issues"
3131
},
3232
"homepage": "https://linkify.js.org",
3333
"peerDependencies": {

packages/linkify-plugin-hashtag/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021 SoapBox Innovations Inc.
1+
Copyright (c) 2024 Nick Frasser
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

packages/linkify-plugin-hashtag/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"repository": {
1515
"type": "git",
16-
"url": "git+https://github.com/Hypercontext/linkifyjs.git",
16+
"url": "git+https://github.com/nfrasser/linkifyjs.git",
1717
"directory": "packages/linkify-plugin-hashtag"
1818
},
1919
"keywords": [
@@ -22,10 +22,10 @@
2222
"url",
2323
"email"
2424
],
25-
"author": "Hypercontext",
25+
"author": "Nick Frasser (https://nfrasser.com)",
2626
"license": "MIT",
2727
"bugs": {
28-
"url": "https://github.com/Hypercontext/linkifyjs/issues"
28+
"url": "https://github.com/nfrasser/linkifyjs/issues"
2929
},
3030
"homepage": "https://linkify.js.org",
3131
"peerDependencies": {

packages/linkify-plugin-ip/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021 SoapBox Innovations Inc.
1+
Copyright (c) 2024 Nick Frasser
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

packages/linkify-plugin-ip/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"repository": {
1515
"type": "git",
16-
"url": "git+https://github.com/Hypercontext/linkifyjs.git",
16+
"url": "git+https://github.com/nfrasser/linkifyjs.git",
1717
"directory": "packages/linkify-plugin-ip"
1818
},
1919
"keywords": [
@@ -25,10 +25,10 @@
2525
"ipv4",
2626
"ipv6"
2727
],
28-
"author": "Hypercontext",
28+
"author": "Nick Frasser (https://nfrasser.com)",
2929
"license": "MIT",
3030
"bugs": {
31-
"url": "https://github.com/Hypercontext/linkifyjs/issues"
31+
"url": "https://github.com/nfrasser/linkifyjs/issues"
3232
},
3333
"homepage": "https://linkify.js.org",
3434
"peerDependencies": {

packages/linkify-plugin-keyword/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021 SoapBox Innovations Inc.
1+
Copyright (c) 2024 Nick Frasser
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

packages/linkify-plugin-keyword/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"repository": {
1515
"type": "git",
16-
"url": "git+https://github.com/Hypercontext/linkifyjs.git",
16+
"url": "git+https://github.com/nfrasser/linkifyjs.git",
1717
"directory": "packages/linkify-plugin-keyword"
1818
},
1919
"keywords": [
@@ -23,10 +23,10 @@
2323
"email",
2424
"keyword"
2525
],
26-
"author": "Hypercontext",
26+
"author": "Nick Frasser (https://nfrasser.com)",
2727
"license": "MIT",
2828
"bugs": {
29-
"url": "https://github.com/Hypercontext/linkifyjs/issues"
29+
"url": "https://github.com/nfrasser/linkifyjs/issues"
3030
},
3131
"homepage": "https://linkify.js.org",
3232
"peerDependencies": {

packages/linkify-plugin-mention/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021 SoapBox Innovations Inc.
1+
Copyright (c) 2024 Nick Frasser
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

packages/linkify-plugin-mention/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"repository": {
1515
"type": "git",
16-
"url": "git+https://github.com/Hypercontext/linkifyjs.git",
16+
"url": "git+https://github.com/nfrasser/linkifyjs.git",
1717
"directory": "packages/linkify-plugin-mention"
1818
},
1919
"keywords": [
@@ -22,10 +22,10 @@
2222
"url",
2323
"email"
2424
],
25-
"author": "Hypercontext",
25+
"author": "Nick Frasser (https://nfrasser.com)",
2626
"license": "MIT",
2727
"bugs": {
28-
"url": "https://github.com/Hypercontext/linkifyjs/issues"
28+
"url": "https://github.com/nfrasser/linkifyjs/issues"
2929
},
3030
"homepage": "https://linkify.js.org",
3131
"peerDependencies": {

packages/linkify-plugin-ticket/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021 SoapBox Innovations Inc.
1+
Copyright (c) 2024 Nick Frasser
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

packages/linkify-plugin-ticket/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"repository": {
1515
"type": "git",
16-
"url": "git+https://github.com/Hypercontext/linkifyjs.git",
16+
"url": "git+https://github.com/nfrasser/linkifyjs.git",
1717
"directory": "packages/linkify-plugin-ticket"
1818
},
1919
"keywords": [
@@ -22,10 +22,10 @@
2222
"url",
2323
"email"
2424
],
25-
"author": "Hypercontext",
25+
"author": "Nick Frasser (https://nfrasser.com)",
2626
"license": "MIT",
2727
"bugs": {
28-
"url": "https://github.com/Hypercontext/linkifyjs/issues"
28+
"url": "https://github.com/nfrasser/linkifyjs/issues"
2929
},
3030
"homepage": "https://linkify.js.org",
3131
"peerDependencies": {

packages/linkify-plugin-ticket/src/ticket.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const TicketToken = createTokenClass('ticket', { isLink: true });
66
* @type {import('linkifyjs').Plugin}
77
*/
88
export default function ticket({ scanner, parser }) {
9-
// TODO: Add cross-repo style tickets? e.g., Hypercontext/linkifyjs#42
9+
// TODO: Add cross-repo style tickets? e.g., nfrasser/linkifyjs#42
1010
// Is that even feasible?
1111
const { POUND, groups } = scanner.tokens;
1212

packages/linkify-react/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021 SoapBox Innovations Inc.
1+
Copyright (c) 2024 Nick Frasser
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

packages/linkify-react/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"repository": {
1515
"type": "git",
16-
"url": "git+https://github.com/Hypercontext/linkifyjs.git",
16+
"url": "git+https://github.com/nfrasser/linkifyjs.git",
1717
"directory": "packages/linkify-react"
1818
},
1919
"keywords": [
@@ -23,10 +23,10 @@
2323
"email",
2424
"react"
2525
],
26-
"author": "Hypercontext",
26+
"author": "Nick Frasser (https://nfrasser.com)",
2727
"license": "MIT",
2828
"bugs": {
29-
"url": "https://github.com/Hypercontext/linkifyjs/issues"
29+
"url": "https://github.com/nfrasser/linkifyjs/issues"
3030
},
3131
"homepage": "https://linkify.js.org",
3232
"peerDependencies": {

0 commit comments

Comments
 (0)