mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 07:39:44 +08:00
9 lines
190 B
JavaScript
9 lines
190 B
JavaScript
import LinkifyIt from 'linkify-it';
|
|
import tlds from 'tlds';
|
|
const linkify = new LinkifyIt();
|
|
linkify.tlds(tlds);
|
|
|
|
export default function matchLinks(text) {
|
|
return linkify.match(text);
|
|
}
|