UNPKG

@ckeditor/ckeditor5-link

Version:

Link feature for CKEditor 5.

20 lines (19 loc) 903 B
/** * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ /** * @module link */ export { default as Link } from './link.js'; export { default as LinkEditing } from './linkediting.js'; export { default as LinkUI } from './linkui.js'; export { default as LinkImage } from './linkimage.js'; export { default as LinkImageEditing } from './linkimageediting.js'; export { default as LinkImageUI } from './linkimageui.js'; export { default as AutoLink } from './autolink.js'; export { default as LinkFormView } from './ui/linkformview.js'; export { default as LinkCommand } from './linkcommand.js'; export { default as UnlinkCommand } from './unlinkcommand.js'; export { addLinkProtocolIfApplicable, ensureSafeUrl, isLinkableElement } from './utils.js'; import './augmentation.js';