-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
Relevant lines:
cetirizine/src/components/input/chat/plugins/AutoLinkPlugin.tsx
Lines 7 to 30 in a97d521
const MATCHERS: LinkMatcher[] = [ | |
(text) => { | |
const match = URL_MATCHER.exec(text); | |
return ( | |
match && { | |
index: match.index, | |
length: match[0].length, | |
text: match[0], | |
url: match[0] | |
} | |
); | |
}, | |
(text) => { | |
const match = EMAIL_MATCHER.exec(text); | |
return ( | |
match && { | |
index: match.index, | |
length: match[0].length, | |
text: match[0], | |
url: `mailto:${match[0]}` | |
} | |
); | |
} | |
]; |
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers