5 lines
192 B
JavaScript
5 lines
192 B
JavaScript
|
// capture anything starting with http:// or https://
|
||
|
// up until a disallowed character or whitespace
|
||
|
export const linkRegex = /(https?:\/\/[^"<>\\^`{|}\s]+)/g;
|
||
|
export default { linkRegex };
|