@code-name-jack/ngx-linkifyjs 16.1.0 → 17.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -8
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# ngx-linkifyjs-v2 - Angular
|
|
1
|
+
# ngx-linkifyjs-v2 - Angular 17 wrapper for linkifyjs - library for finding links in plain text and converting them to HTML <a> tags via linkifyjs
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/js/ngx-linkifyjs),
|
|
4
4
|
[](https://anthonynahas.github.io/ngx-linkifyjs)
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
[](https://github.com/AnthonyNahas/ngx-linkifyjs/blob/master/LICENSE)
|
|
13
13
|
[](https://github.com/gdi2290/awesome-angular)
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
|
|
16
16
|
<p align="center">
|
|
17
17
|
<img alt="ngx-linkifyjs demo" width="320px" style="text-align: center;"
|
|
18
18
|
src="https://cdn.jsdelivr.net/gh/anthonynahas/ngx-linkifyjs@master/assets/demo.gif">
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
Do you have any question or suggestion ? Please do not hesitate to contact us!
|
|
23
23
|
Alternatively, provide a PR | open an appropriate issue [here](https://github.com/anthonynahas/ngx-linkifyjs/issues)
|
|
24
24
|
|
|
25
|
-
If you like this project, support [ngx-linkifyjs](https://github.com/anthonynahas/ngx-linkifyjs)
|
|
25
|
+
If you like this project, support [ngx-linkifyjs](https://github.com/anthonynahas/ngx-linkifyjs)
|
|
26
26
|
by starring :star: and sharing it :loudspeaker:
|
|
27
27
|
|
|
28
28
|
|
|
@@ -65,7 +65,7 @@ Now add the library via the `angular schematics`
|
|
|
65
65
|
ng add ngx-linkifyjs
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
-
## 2. Install via *npm*. (Alternative)
|
|
68
|
+
## 2. Install via *npm*. (Alternative)
|
|
69
69
|
|
|
70
70
|
Now install `ngx-linkifyjs` via:
|
|
71
71
|
```shell
|
|
@@ -164,8 +164,8 @@ import { NgxLinkifyOptions } from 'ngx-linkifyjs';
|
|
|
164
164
|
|
|
165
165
|
if you prefer to provide your own option to the `pipe`, you can use it like the following:
|
|
166
166
|
|
|
167
|
-
- `{{text | linkify: 'options' }}`
|
|
168
|
-
- `{{text | linkify: '{/*your options*/}' }}`
|
|
167
|
+
- `{{text | linkify: 'options' }}`
|
|
168
|
+
- `{{text | linkify: '{/*your options*/}' }}`
|
|
169
169
|
- `{{text | linkify: '{target {url: "_self" }}' }}`
|
|
170
170
|
|
|
171
171
|
|
|
@@ -387,8 +387,8 @@ $ npm i && npm start
|
|
|
387
387
|
+ Drop an email to: [Anthony Nahas](mailto:anthony.na@hotmail.de)
|
|
388
388
|
+ or open an appropriate [issue](https://github.com/anthonynahas/ngx-linkifyjs/issues)
|
|
389
389
|
+ let us chat on [Gitter](https://gitter.im/angular-material-extensions/Lobby)
|
|
390
|
-
|
|
391
|
-
Built by and for developers :heart: we will help you :punch:
|
|
390
|
+
|
|
391
|
+
Built by and for developers :heart: we will help you :punch:
|
|
392
392
|
|
|
393
393
|
---
|
|
394
394
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@code-name-jack/ngx-linkifyjs",
|
|
3
3
|
"description": "Angular wrapper for linkifyjs(v4) - library for finding links in plain text and converting them to HTML <a> tags via linkifyjs",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "17.0.1",
|
|
5
5
|
"homepage": "https://github.com/code-name-jack/ngx-linkifyjs-v2",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Code Name Jack",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"node": ">=16.0.0"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"@angular/common": "~
|
|
38
|
-
"@angular/core": "~
|
|
39
|
-
"@schematics/angular": "~
|
|
37
|
+
"@angular/common": "~17.x",
|
|
38
|
+
"@angular/core": "~17.x",
|
|
39
|
+
"@schematics/angular": "~17.x",
|
|
40
40
|
"linkify-plugin-hashtag": "^4.0.2",
|
|
41
41
|
"linkify-plugin-mention": "^4.0.2",
|
|
42
42
|
"linkify-string": "^4.0.2",
|
|
@@ -143,4 +143,4 @@
|
|
|
143
143
|
"dependencies": {
|
|
144
144
|
"tslib": "^2.4.1"
|
|
145
145
|
}
|
|
146
|
-
}
|
|
146
|
+
}
|