html-urls 2.4.25 → 2.4.28

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "html-urls",
3
3
  "description": "Get all links from a HTML markup",
4
4
  "homepage": "https://nicedoc.io/Kikobeats/html-urls",
5
- "version": "2.4.25",
5
+ "version": "2.4.28",
6
6
  "main": "src/index.js",
7
7
  "author": {
8
8
  "email": "josefrancisco.verdu@gmail.com",
@@ -27,7 +27,7 @@
27
27
  "urls"
28
28
  ],
29
29
  "dependencies": {
30
- "@metascraper/helpers": "~5.24.0",
30
+ "@metascraper/helpers": "~5.25.0",
31
31
  "cheerio": "~1.0.0-rc.10",
32
32
  "is-uri": "~1.2.0",
33
33
  "is-url-http": "~2.2.4",
package/src/index.js CHANGED
@@ -32,18 +32,10 @@ const reduceSelector = (collection, fn, acc = []) => {
32
32
 
33
33
  const includes = (collection, fn) => findIndex(collection, fn) !== -1
34
34
 
35
- const normalizedUrl = (...args) => {
36
- try {
37
- return normalizeUrl(...args)
38
- } catch (_) {
39
- return undefined
40
- }
41
- }
42
-
43
35
  const getLink = ({ url, el, attribute }) => {
44
36
  const attr = get(el, `attribs.${attribute}`, '')
45
37
  if (isEmpty(attr)) return undefined
46
- const absoluteUrl = url ? normalizedUrl(url, attr) : normalizedUrl(attr)
38
+ const absoluteUrl = url ? normalizeUrl(url, attr) : normalizeUrl(attr)
47
39
  return {
48
40
  value: attr,
49
41
  url: isHttpUrl(absoluteUrl) ? absoluteUrl : undefined,
package/CHANGELOG.md DELETED
@@ -1,527 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
-
5
- ### 2.4.25 (2021-08-03)
6
-
7
- ### 2.4.24 (2021-07-26)
8
-
9
- ### [2.4.23](https://github.com/Kikobeats/html-urls/compare/v2.4.22...v2.4.23) (2021-05-31)
10
-
11
- ### [2.4.22](https://github.com/Kikobeats/html-urls/compare/v2.4.21...v2.4.22) (2021-03-10)
12
-
13
- ### [2.4.21](https://github.com/Kikobeats/html-urls/compare/v2.4.20...v2.4.21) (2021-03-02)
14
-
15
- ### [2.4.20](https://github.com/Kikobeats/html-urls/compare/v2.4.19...v2.4.20) (2021-02-08)
16
-
17
- ### [2.4.19](https://github.com/Kikobeats/html-urls/compare/v2.4.18...v2.4.19) (2020-12-23)
18
-
19
- ### [2.4.18](https://github.com/Kikobeats/html-urls/compare/v2.4.17...v2.4.18) (2020-12-17)
20
-
21
- ### [2.4.17](https://github.com/Kikobeats/html-urls/compare/v2.4.16...v2.4.17) (2020-12-04)
22
-
23
- ### [2.4.16](https://github.com/Kikobeats/html-urls/compare/v2.4.15...v2.4.16) (2020-11-10)
24
-
25
- ### [2.4.15](https://github.com/Kikobeats/html-urls/compare/v2.4.14...v2.4.15) (2020-10-12)
26
-
27
- ### [2.4.14](https://github.com/Kikobeats/html-urls/compare/v2.4.13...v2.4.14) (2020-08-11)
28
-
29
- ### [2.4.13](https://github.com/Kikobeats/html-urls/compare/v2.4.12...v2.4.13) (2020-07-29)
30
-
31
- ### [2.4.12](https://github.com/Kikobeats/html-urls/compare/v2.4.11...v2.4.12) (2020-07-09)
32
-
33
- ### [2.4.11](https://github.com/Kikobeats/html-urls/compare/v2.4.10...v2.4.11) (2020-04-27)
34
-
35
- ### [2.4.10](https://github.com/Kikobeats/html-urls/compare/v2.4.9...v2.4.10) (2020-03-05)
36
-
37
- ### [2.4.9](https://github.com/Kikobeats/html-urls/compare/v2.4.8...v2.4.9) (2020-02-14)
38
-
39
- ### [2.4.8](https://github.com/Kikobeats/html-urls/compare/v2.4.7...v2.4.8) (2020-02-06)
40
-
41
- ### [2.4.7](https://github.com/Kikobeats/html-urls/compare/v2.4.6...v2.4.7) (2020-02-04)
42
-
43
- ### [2.4.6](https://github.com/Kikobeats/html-urls/compare/v2.4.5...v2.4.6) (2020-02-04)
44
-
45
- ### [2.4.5](https://github.com/Kikobeats/html-urls/compare/v2.4.4...v2.4.5) (2020-01-16)
46
-
47
- ### [2.4.4](https://github.com/Kikobeats/html-urls/compare/v2.4.3...v2.4.4) (2020-01-08)
48
-
49
- ### [2.4.3](https://github.com/Kikobeats/html-urls/compare/v2.4.2...v2.4.3) (2019-11-19)
50
-
51
- ### [2.4.2](https://github.com/Kikobeats/html-urls/compare/v2.4.1...v2.4.2) (2019-11-11)
52
-
53
- ### [2.4.1](https://github.com/Kikobeats/html-urls/compare/v2.4.0...v2.4.1) (2019-09-25)
54
-
55
-
56
- ### Bug Fixes
57
-
58
- * test ([5e56f83](https://github.com/Kikobeats/html-urls/commit/5e56f83))
59
-
60
- ## [2.4.0](https://github.com/Kikobeats/html-urls/compare/v2.3.16...v2.4.0) (2019-09-24)
61
-
62
-
63
- ### Features
64
-
65
- * add uri support ([a629c99](https://github.com/Kikobeats/html-urls/commit/a629c99))
66
-
67
- ### [2.3.16](https://github.com/Kikobeats/html-urls/compare/v2.3.15...v2.3.16) (2019-09-24)
68
-
69
- ### [2.3.15](https://github.com/Kikobeats/html-urls/compare/v2.3.14...v2.3.15) (2019-09-13)
70
-
71
-
72
- ### Bug Fixes
73
-
74
- * params sort ([cd6e1e8](https://github.com/Kikobeats/html-urls/commit/cd6e1e8))
75
-
76
- ### [2.3.14](https://github.com/Kikobeats/html-urls/compare/v2.3.13...v2.3.14) (2019-07-11)
77
-
78
-
79
-
80
- ### [2.3.13](https://github.com/Kikobeats/html-urls/compare/v2.3.12...v2.3.13) (2019-07-04)
81
-
82
-
83
-
84
- ### [2.3.12](https://github.com/Kikobeats/html-urls/compare/v2.3.11...v2.3.12) (2019-06-20)
85
-
86
-
87
- ### Bug Fixes
88
-
89
- * **package:** update @metascraper/helpers to version 5.5.0 ([d34e750](https://github.com/Kikobeats/html-urls/commit/d34e750))
90
-
91
-
92
-
93
- ### [2.3.11](https://github.com/Kikobeats/html-urls/compare/v2.3.10...v2.3.11) (2019-06-19)
94
-
95
-
96
- ### Build System
97
-
98
- * update meta ([039f381](https://github.com/Kikobeats/html-urls/commit/039f381))
99
- * update travis ([c742644](https://github.com/Kikobeats/html-urls/commit/c742644))
100
-
101
-
102
-
103
- ### [2.3.10](https://github.com/Kikobeats/html-urls/compare/v2.3.9...v2.3.10) (2019-05-31)
104
-
105
-
106
- ### Bug Fixes
107
-
108
- * **package:** update @metascraper/helpers to version 5.4.0 ([17e3c0d](https://github.com/Kikobeats/html-urls/commit/17e3c0d))
109
-
110
-
111
-
112
- ### [2.3.9](https://github.com/Kikobeats/html-urls/compare/v2.3.8...v2.3.9) (2019-05-20)
113
-
114
-
115
- ### Build System
116
-
117
- * change git-authors-cli position ([ded4a00](https://github.com/Kikobeats/html-urls/commit/ded4a00))
118
-
119
-
120
-
121
- ### [2.3.8](https://github.com/Kikobeats/html-urls/compare/v2.3.7...v2.3.8) (2019-05-20)
122
-
123
-
124
- ### Bug Fixes
125
-
126
- * **package:** update is-url-http to version 1.2.0 ([386be98](https://github.com/Kikobeats/html-urls/commit/386be98))
127
-
128
-
129
-
130
- ### [2.3.7](https://github.com/Kikobeats/html-urls/compare/v2.3.6...v2.3.7) (2019-05-15)
131
-
132
-
133
- ### Bug Fixes
134
-
135
- * **package:** update @metascraper/helpers to version 5.3.0 ([2fdb7da](https://github.com/Kikobeats/html-urls/commit/2fdb7da))
136
-
137
-
138
-
139
- ## [2.3.6](https://github.com/Kikobeats/html-urls/compare/v2.3.5...v2.3.6) (2019-05-05)
140
-
141
-
142
- ### Bug Fixes
143
-
144
- * **package:** update @metascraper/helpers to version 5.2.0 ([32f40a5](https://github.com/Kikobeats/html-urls/commit/32f40a5))
145
-
146
-
147
-
148
- ## [2.3.5](https://github.com/Kikobeats/html-urls/compare/v2.3.4...v2.3.5) (2019-04-22)
149
-
150
-
151
- ### Bug Fixes
152
-
153
- * **package:** update matcher to version 2.0.0 ([a51f3f5](https://github.com/Kikobeats/html-urls/commit/a51f3f5))
154
-
155
-
156
-
157
- <a name="2.3.4"></a>
158
- ## [2.3.4](https://github.com/Kikobeats/html-urls/compare/v2.3.3...v2.3.4) (2019-04-03)
159
-
160
-
161
- ### Bug Fixes
162
-
163
- * **package:** update [@metascraper](https://github.com/metascraper)/helpers to version 5.1.0 ([42ca806](https://github.com/Kikobeats/html-urls/commit/42ca806))
164
-
165
-
166
-
167
- <a name="2.3.3"></a>
168
- ## 2.3.3 (2019-03-17)
169
-
170
-
171
- ### Bug Fixes
172
-
173
- * **package:** update [@metascraper](https://github.com/metascraper)/helpers to version 5.0.0 ([28d133d](https://github.com/Kikobeats/html-urls/commit/28d133d))
174
-
175
-
176
-
177
- <a name="2.3.2"></a>
178
- ## 2.3.2 (2019-03-16)
179
-
180
-
181
- ### Bug Fixes
182
-
183
- * **package:** update [@metascraper](https://github.com/metascraper)/helpers to version 4.10.2 ([d3ecff4](https://github.com/Kikobeats/html-urls/commit/d3ecff4))
184
- * **package:** update [@metascraper](https://github.com/metascraper)/helpers to version 4.8.3 ([2435919](https://github.com/Kikobeats/html-urls/commit/2435919))
185
- * **package:** update [@metascraper](https://github.com/metascraper)/helpers to version 4.9.0 ([c6973ff](https://github.com/Kikobeats/html-urls/commit/c6973ff))
186
- * **package:** update is-url-http to version 1.1.1 ([6685359](https://github.com/Kikobeats/html-urls/commit/6685359))
187
-
188
-
189
-
190
- <a name="2.3.1"></a>
191
- ## 2.3.1 (2018-11-16)
192
-
193
-
194
- ### Bug Fixes
195
-
196
- * **package:** update [@metascraper](https://github.com/metascraper)/helpers to version 4.5.5 ([9af4a4f](https://github.com/Kikobeats/html-urls/commit/9af4a4f))
197
- * **package:** update [@metascraper](https://github.com/metascraper)/helpers to version 4.7.0 ([967577e](https://github.com/Kikobeats/html-urls/commit/967577e))
198
-
199
-
200
-
201
- <a name="2.3.0"></a>
202
- # 2.3.0 (2018-09-17)
203
-
204
-
205
-
206
- <a name="2.2.1"></a>
207
- ## 2.2.1 (2018-09-16)
208
-
209
-
210
-
211
- <a name="2.2.0"></a>
212
- # 2.2.0 (2018-09-16)
213
-
214
-
215
-
216
- <a name="2.1.3"></a>
217
- ## 2.1.3 (2018-09-05)
218
-
219
-
220
- ### Bug Fixes
221
-
222
- * **package:** update [@metascraper](https://github.com/metascraper)/helpers to version 4.1.0 ([7be224c](https://github.com/Kikobeats/html-urls/commit/7be224c))
223
-
224
-
225
-
226
- <a name="2.1.2"></a>
227
- ## 2.1.2 (2018-08-25)
228
-
229
-
230
- ### Bug Fixes
231
-
232
- * **package:** update [@metascraper](https://github.com/metascraper)/helpers to version 3.12.1 ([c3a83cf](https://github.com/Kikobeats/html-urls/commit/c3a83cf))
233
- * **package:** update [@metascraper](https://github.com/metascraper)/helpers to version 4.0.0 ([1afba08](https://github.com/Kikobeats/html-urls/commit/1afba08))
234
-
235
-
236
-
237
- <a name="2.1.1"></a>
238
- ## 2.1.1 (2018-07-23)
239
-
240
-
241
-
242
- <a name="2.1.0"></a>
243
- # 2.1.0 (2018-07-06)
244
-
245
-
246
-
247
- <a name="2.0.3"></a>
248
- ## 2.0.3 (2018-07-05)
249
-
250
-
251
-
252
- <a name="2.0.2"></a>
253
- ## 2.0.2 (2018-07-05)
254
-
255
-
256
-
257
- <a name="2.0.1"></a>
258
- ## 2.0.1 (2018-07-04)
259
-
260
-
261
-
262
- <a name="2.0.0"></a>
263
- # 2.0.0 (2018-06-26)
264
-
265
-
266
-
267
- <a name="1.0.9"></a>
268
- ## 1.0.9 (2018-06-21)
269
-
270
-
271
-
272
- <a name="1.0.8"></a>
273
- ## 1.0.8 (2018-05-30)
274
-
275
-
276
-
277
- <a name="1.0.7"></a>
278
- ## 1.0.7 (2018-05-29)
279
-
280
-
281
-
282
- <a name="1.0.6"></a>
283
- ## 1.0.6 (2018-05-29)
284
-
285
-
286
- ### Bug Fixes
287
-
288
- * **package:** update [@metascraper](https://github.com/metascraper)/helpers to version 3.11.4 ([7ae9fd7](https://github.com/Kikobeats/html-urls/commit/7ae9fd7))
289
-
290
-
291
-
292
- <a name="1.0.5"></a>
293
- ## 1.0.5 (2018-04-29)
294
-
295
-
296
- ### Bug Fixes
297
-
298
- * **package:** update [@metascraper](https://github.com/metascraper)/helpers to version 3.10.7 ([82afd42](https://github.com/Kikobeats/html-urls/commit/82afd42))
299
- * **package:** update [@metascraper](https://github.com/metascraper)/helpers to version 3.8.0 ([71bdece](https://github.com/Kikobeats/html-urls/commit/71bdece))
300
- * **package:** update [@metascraper](https://github.com/metascraper)/helpers to version 3.9.2 ([fd920f7](https://github.com/Kikobeats/html-urls/commit/fd920f7))
301
- * **package:** update matcher to version 1.1.0 ([04d1be8](https://github.com/Kikobeats/html-urls/commit/04d1be8))
302
-
303
-
304
-
305
- <a name="1.0.4"></a>
306
- ## 1.0.4 (2018-02-01)
307
-
308
-
309
-
310
- <a name="1.0.3"></a>
311
- ## 1.0.3 (2018-01-27)
312
-
313
-
314
-
315
- <a name="1.0.2"></a>
316
- ## 1.0.2 (2018-01-27)
317
-
318
-
319
-
320
- <a name="1.0.1"></a>
321
- ## 1.0.1 (2018-01-26)
322
-
323
-
324
- ### Bug Fixes
325
-
326
- * **package:** update [@metascraper](https://github.com/metascraper)/helpers to version 3.5.0 ([6e91e1f](https://github.com/Kikobeats/html-urls/commit/6e91e1f))
327
- * **package:** update [@metascraper](https://github.com/metascraper)/helpers to version 3.6.0 ([6ea3c71](https://github.com/Kikobeats/html-urls/commit/6ea3c71))
328
-
329
-
330
-
331
- <a name="1.0.0"></a>
332
- # 1.0.0 (2018-01-16)
333
-
334
-
335
-
336
- <a name="2.3.2"></a>
337
- ## 2.3.2 (2019-03-16)
338
-
339
- * fix(package): update @metascraper/helpers to version 4.10.2 ([d3ecff4](https://github.com/Kikobeats/html-urls/commit/d3ecff4))
340
- * fix(package): update @metascraper/helpers to version 4.8.3 ([2435919](https://github.com/Kikobeats/html-urls/commit/2435919))
341
- * fix(package): update @metascraper/helpers to version 4.9.0 ([c6973ff](https://github.com/Kikobeats/html-urls/commit/c6973ff))
342
- * fix(package): update is-url-http to version 1.1.1 ([6685359](https://github.com/Kikobeats/html-urls/commit/6685359))
343
- * Update README.md ([e2efa84](https://github.com/Kikobeats/html-urls/commit/e2efa84))
344
- * Update README.md ([f0cc8fa](https://github.com/Kikobeats/html-urls/commit/f0cc8fa))
345
- * Update README.md ([b4b2a74](https://github.com/Kikobeats/html-urls/commit/b4b2a74))
346
-
347
-
348
-
349
- <a name="2.3.1"></a>
350
- ## 2.3.1 (2018-11-16)
351
-
352
- * fix(package): update @metascraper/helpers to version 4.5.5 ([9af4a4f](https://github.com/Kikobeats/html-urls/commit/9af4a4f))
353
- * fix(package): update @metascraper/helpers to version 4.7.0 ([967577e](https://github.com/Kikobeats/html-urls/commit/967577e))
354
-
355
-
356
-
357
- <a name="2.3.0"></a>
358
- # 2.3.0 (2018-09-17)
359
-
360
- * Add is-url-http dependency ([0ca6a28](https://github.com/Kikobeats/html-urls/commit/0ca6a28))
361
-
362
-
363
-
364
- <a name="2.2.1"></a>
365
- ## 2.2.1 (2018-09-16)
366
-
367
- * Refactor ([f5e23de](https://github.com/Kikobeats/html-urls/commit/f5e23de))
368
-
369
-
370
-
371
- <a name="2.2.0"></a>
372
- # 2.2.0 (2018-09-16)
373
-
374
- * Fix linter ([80263a2](https://github.com/Kikobeats/html-urls/commit/80263a2))
375
- * Ignore callto URLs ([d38f561](https://github.com/Kikobeats/html-urls/commit/d38f561))
376
- * Update package.json ([08957ee](https://github.com/Kikobeats/html-urls/commit/08957ee))
377
-
378
-
379
-
380
- <a name="2.1.3"></a>
381
- ## 2.1.3 (2018-09-05)
382
-
383
- * Update API ([537e923](https://github.com/Kikobeats/html-urls/commit/537e923))
384
- * fix(package): update @metascraper/helpers to version 4.1.0 ([7be224c](https://github.com/Kikobeats/html-urls/commit/7be224c))
385
-
386
-
387
-
388
- <a name="2.1.2"></a>
389
- ## 2.1.2 (2018-08-25)
390
-
391
- * Ignore mailto urls ([fcc6607](https://github.com/Kikobeats/html-urls/commit/fcc6607))
392
- * Update package.json ([8410fb2](https://github.com/Kikobeats/html-urls/commit/8410fb2))
393
- * fix(package): update @metascraper/helpers to version 3.12.1 ([c3a83cf](https://github.com/Kikobeats/html-urls/commit/c3a83cf))
394
- * fix(package): update @metascraper/helpers to version 4.0.0 ([1afba08](https://github.com/Kikobeats/html-urls/commit/1afba08))
395
-
396
-
397
-
398
- <a name="2.1.1"></a>
399
- ## 2.1.1 (2018-07-23)
400
-
401
- * Update tests ([7115b20](https://github.com/Kikobeats/html-urls/commit/7115b20))
402
- * Use last version ([2bbb066](https://github.com/Kikobeats/html-urls/commit/2bbb066))
403
-
404
-
405
-
406
- <a name="2.1.0"></a>
407
- # 2.1.0 (2018-07-06)
408
-
409
- * Add removeDuplicates option ([09282e8](https://github.com/Kikobeats/html-urls/commit/09282e8))
410
-
411
-
412
-
413
- <a name="2.0.3"></a>
414
- ## 2.0.3 (2018-07-05)
415
-
416
- * Remove duplicate urls from different tags ([862aaef](https://github.com/Kikobeats/html-urls/commit/862aaef))
417
- * Update tests snaphots ([c8f46a8](https://github.com/Kikobeats/html-urls/commit/c8f46a8))
418
-
419
-
420
-
421
- <a name="2.0.2"></a>
422
- ## 2.0.2 (2018-07-05)
423
-
424
- * Generate tests based on selectors supported ([d2a1993](https://github.com/Kikobeats/html-urls/commit/d2a1993))
425
- * Ignore invalid URLs ([08f8529](https://github.com/Kikobeats/html-urls/commit/08f8529))
426
-
427
-
428
-
429
- <a name="2.0.1"></a>
430
- ## 2.0.1 (2018-07-04)
431
-
432
- * Use Set instead of Array ([64e63d1](https://github.com/Kikobeats/html-urls/commit/64e63d1))
433
-
434
-
435
-
436
- <a name="2.0.0"></a>
437
- # 2.0.0 (2018-06-26)
438
-
439
- * Rename normalizeUrl → normalizedUrl ([ce0300c](https://github.com/Kikobeats/html-urls/commit/ce0300c))
440
-
441
-
442
-
443
- <a name="1.0.9"></a>
444
- ## 1.0.9 (2018-06-21)
445
-
446
- * Expose tags and cheerio opts ([9c27283](https://github.com/Kikobeats/html-urls/commit/9c27283))
447
-
448
-
449
-
450
- <a name="1.0.8"></a>
451
- ## 1.0.8 (2018-05-30)
452
-
453
- * Refactor ([7da0187](https://github.com/Kikobeats/html-urls/commit/7da0187))
454
-
455
-
456
-
457
- <a name="1.0.7"></a>
458
- ## 1.0.7 (2018-05-29)
459
-
460
- * Update deps ([bb89028](https://github.com/Kikobeats/html-urls/commit/bb89028))
461
-
462
-
463
-
464
- <a name="1.0.6"></a>
465
- ## 1.0.6 (2018-05-29)
466
-
467
- * Update ([a352247](https://github.com/Kikobeats/html-urls/commit/a352247))
468
- * Update README.md ([b04bf62](https://github.com/Kikobeats/html-urls/commit/b04bf62))
469
- * fix(package): update @metascraper/helpers to version 3.11.4 ([7ae9fd7](https://github.com/Kikobeats/html-urls/commit/7ae9fd7))
470
-
471
-
472
-
473
- <a name="1.0.5"></a>
474
- ## 1.0.5 (2018-04-29)
475
-
476
- * Little Refactor ([ae4271b](https://github.com/Kikobeats/html-urls/commit/ae4271b))
477
- * Update fixtures ([d734a0f](https://github.com/Kikobeats/html-urls/commit/d734a0f))
478
- * fix(package): update @metascraper/helpers to version 3.10.7 ([82afd42](https://github.com/Kikobeats/html-urls/commit/82afd42))
479
- * fix(package): update @metascraper/helpers to version 3.8.0 ([71bdece](https://github.com/Kikobeats/html-urls/commit/71bdece))
480
- * fix(package): update @metascraper/helpers to version 3.9.2 ([fd920f7](https://github.com/Kikobeats/html-urls/commit/fd920f7))
481
- * fix(package): update matcher to version 1.1.0 ([04d1be8](https://github.com/Kikobeats/html-urls/commit/04d1be8))
482
- * chore(package): update chalk to version 2.4.0 ([7b9f93e](https://github.com/Kikobeats/html-urls/commit/7b9f93e))
483
- * chore(package): update got to version 8.1.0 ([eb8e729](https://github.com/Kikobeats/html-urls/commit/eb8e729))
484
- * chore(package): update got to version 8.2.0 ([ac10519](https://github.com/Kikobeats/html-urls/commit/ac10519))
485
- * chore(package): update got to version 8.3.0 ([28f053b](https://github.com/Kikobeats/html-urls/commit/28f053b))
486
-
487
-
488
-
489
- <a name="1.0.4"></a>
490
- ## 1.0.4 (2018-02-01)
491
-
492
- * Add html helper for testing ([e3238ea](https://github.com/Kikobeats/html-urls/commit/e3238ea))
493
- * Improve whitelist support ([1c773f1](https://github.com/Kikobeats/html-urls/commit/1c773f1))
494
-
495
-
496
-
497
- <a name="1.0.3"></a>
498
- ## 1.0.3 (2018-01-27)
499
-
500
- * Tweaks ([f7d4865](https://github.com/Kikobeats/html-urls/commit/f7d4865))
501
-
502
-
503
-
504
- <a name="1.0.2"></a>
505
- ## 1.0.2 (2018-01-27)
506
-
507
- * Rename blacklist → whitelist ([0891b36](https://github.com/Kikobeats/html-urls/commit/0891b36))
508
-
509
-
510
-
511
- <a name="1.0.1"></a>
512
- ## 1.0.1 (2018-01-26)
513
-
514
- * Rename ([0927b08](https://github.com/Kikobeats/html-urls/commit/0927b08))
515
- * Rename interface ([df7e07f](https://github.com/Kikobeats/html-urls/commit/df7e07f))
516
- * Update README.md ([d70a3f1](https://github.com/Kikobeats/html-urls/commit/d70a3f1))
517
- * fix(package): update @metascraper/helpers to version 3.5.0 ([6e91e1f](https://github.com/Kikobeats/html-urls/commit/6e91e1f))
518
- * fix(package): update @metascraper/helpers to version 3.6.0 ([6ea3c71](https://github.com/Kikobeats/html-urls/commit/6ea3c71))
519
-
520
-
521
-
522
- <a name="1.0.0"></a>
523
- # 1.0.0 (2018-01-16)
524
-
525
- * First commit ([6fac1f4](https://github.com/Kikobeats/html-urls/commit/6fac1f4))
526
- * Update README.md ([7507a54](https://github.com/Kikobeats/html-urls/commit/7507a54))
527
- * docs(readme): add Greenkeeper badge ([d67bfe3](https://github.com/Kikobeats/html-urls/commit/d67bfe3))