mirror of
https://github.com/wassname/talk.git
synced 2026-07-18 12:40:13 +08:00
9 lines
173 B
JavaScript
9 lines
173 B
JavaScript
import LinkifyIt from 'linkify-it';
|
|
import tlds from 'tlds';
|
|
|
|
export function createLinkify() {
|
|
const linkify = new LinkifyIt();
|
|
linkify.tlds(tlds);
|
|
return linkify;
|
|
}
|