feat: Added "Image from URL" option and markdown image syntax support to Super. Also allows pasting images from copied web content (#2218)

This commit is contained in:
Aman Harwara
2023-02-25 11:27:03 +05:30
committed by GitHub
parent adff5979be
commit a15fc1ed1d
14 changed files with 333 additions and 31 deletions

View File

@@ -14,6 +14,7 @@ import { CollapsibleContentNode } from '../../Plugins/CollapsiblePlugin/Collapsi
import { CollapsibleTitleNode } from '../../Plugins/CollapsiblePlugin/CollapsibleTitleNode'
import { FileNode } from '../../Plugins/EncryptedFilePlugin/Nodes/FileNode'
import { BubbleNode } from '../../Plugins/ItemBubblePlugin/Nodes/BubbleNode'
import { RemoteImageNode } from '../../Plugins/RemoteImagePlugin/RemoteImageNode'
export const BlockEditorNodes = [
AutoLinkNode,
@@ -38,4 +39,5 @@ export const BlockEditorNodes = [
YouTubeNode,
FileNode,
BubbleNode,
RemoteImageNode,
]