Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@tiptap/extension-link
Advanced tools
@tiptap/extension-link is an extension for the Tiptap rich-text editor that allows users to add, edit, and manage hyperlinks within their content. It provides a set of tools and configurations to handle links effectively, making it easier to integrate link functionalities into your Tiptap editor setup.
Add a Link
This feature allows you to add a link to your content. The code sample demonstrates how to configure the Link extension and initialize the editor with a link in the content.
import { Link } from '@tiptap/extension-link';
import { Editor } from '@tiptap/core';
const editor = new Editor({
extensions: [
Link.configure({
openOnClick: false,
}),
],
content: '<p>Click <a href="https://example.com">here</a> to visit example.com</p>',
});
Edit a Link
This feature allows you to edit an existing link. The code sample shows how to change the href attribute of a link using Tiptap's chainable commands.
editor.chain().focus().extendMarkRange('link').setLink({ href: 'https://new-url.com' }).run();
Remove a Link
This feature allows you to remove a link from the content. The code sample demonstrates how to use the unsetLink command to remove a link.
editor.chain().focus().unsetLink().run();
Open Link on Click
This feature allows links to be opened when clicked. The code sample shows how to configure the Link extension to open links on click.
import { Link } from '@tiptap/extension-link';
import { Editor } from '@tiptap/core';
const editor = new Editor({
extensions: [
Link.configure({
openOnClick: true,
}),
],
content: '<p>Click <a href="https://example.com">here</a> to visit example.com</p>',
});
prosemirror-schema-basic provides a basic schema for ProseMirror, including support for links. It is more low-level compared to @tiptap/extension-link and requires more manual setup and configuration.
Slate is a completely customizable framework for building rich text editors. It includes support for links, but requires more configuration and setup compared to @tiptap/extension-link.
Draft.js is a framework for building rich text editors in React. It includes support for links, but the API and configuration are different from Tiptap, offering a different set of features and flexibility.
Tiptap is a headless wrapper around ProseMirror – a toolkit for building rich text WYSIWYG editors, which is already in use at many well-known companies such as New York Times, The Guardian or Atlassian.
Documentation can be found on the Tiptap website.
Tiptap is open sourced software licensed under the MIT license.
FAQs
link extension for tiptap
We found that @tiptap/extension-link demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.