This commit is contained in:
parent
5ad77e8a3a
commit
bc3006f3c4
9 changed files with 92 additions and 17 deletions
|
|
@ -3,11 +3,12 @@
|
|||
*/
|
||||
|
||||
module.exports = text => {
|
||||
const match = text.match(/^https?:\/\/[\w\/:%#@\$&\?!\(\)\[\]~\.=\+\-]+/);
|
||||
const match = text.match(/^https?:\/\/[\w\/:%#@\$&\?!\(\)\[\]~\.=\+\-]+/);
|
||||
if (!match) return null;
|
||||
const link = match[0];
|
||||
const url = match[0];
|
||||
return {
|
||||
type: 'link',
|
||||
content: link
|
||||
type: 'url',
|
||||
content: url,
|
||||
url: url
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue