UNPKG

@nextcloud/vue

Version:
15 lines (14 loc) 288 B
import linkifyStr from "linkify-string"; const Linkify = (text) => { return linkifyStr(text, { defaultProtocol: "https", target: "_blank", className: "external linkified", attributes: { rel: "nofollow noopener noreferrer" } }); }; export { Linkify as L };