debian-mirror-gitlab/app/assets/javascripts/jobs/utils.js

13 lines
380 B
JavaScript
Raw Normal View History

2021-02-22 17:27:13 +05:30
/**
* capture anything starting with http:// or https://
* https?:\/\/
*
* up until a disallowed character or whitespace
2021-09-30 23:02:18 +05:30
* [^"<>()\\^`{|}\s]+
2021-02-22 17:27:13 +05:30
*
* and a disallowed character or whitespace, including non-ending chars .,:;!?
2021-09-30 23:02:18 +05:30
* [^"<>()\\^`{|}\s.,:;!?]
2021-02-22 17:27:13 +05:30
*/
2021-09-30 23:02:18 +05:30
export const linkRegex = /(https?:\/\/[^"<>()\\^`{|}\s]+[^"<>()\\^`{|}\s.,:;!?])/g;
2021-01-29 00:20:46 +05:30
export default { linkRegex };