REDROOM
PHP 8.2.30
Path:
Logout
Edit File
Size: 1.20 KB
Close
/proc/thread-self/root/home/byroehnu/.trash/node_modules11/@tiptap/extension-paragraph/src/paragraph.ts
Text
Base64
import { mergeAttributes, Node } from '@tiptap/core' export interface ParagraphOptions { /** * The HTML attributes for a paragraph node. * @default {} * @example { class: 'foo' } */ HTMLAttributes: Record<string, any>, } declare module '@tiptap/core' { interface Commands<ReturnType> { paragraph: { /** * Toggle a paragraph * @example editor.commands.toggleParagraph() */ setParagraph: () => ReturnType, } } } /** * This extension allows you to create paragraphs. * @see https://www.tiptap.dev/api/nodes/paragraph */ export const Paragraph = Node.create<ParagraphOptions>({ name: 'paragraph', priority: 1000, addOptions() { return { HTMLAttributes: {}, } }, group: 'block', content: 'inline*', parseHTML() { return [ { tag: 'p' }, ] }, renderHTML({ HTMLAttributes }) { return ['p', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0] }, addCommands() { return { setParagraph: () => ({ commands }) => { return commands.setNode(this.name) }, } }, addKeyboardShortcuts() { return { 'Mod-Alt-0': () => this.editor.commands.setParagraph(), } }, })
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 2
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
index.ts
101 B
lrw-r--r--
2026-02-28 00:28:06
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
paragraph.ts
1.20 KB
lrw-r--r--
2026-02-28 00:28:12
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).