might work, basic writing page with linking. no saving.

This commit is contained in:
2026-06-28 10:43:47 -05:00
parent 914c9fbac8
commit c04738f9c4
12 changed files with 745 additions and 3 deletions
Vendored
+13
View File
@@ -0,0 +1,13 @@
export interface HomelabApp {
id: string; // uuid
name: string;
description: string | null;
address: string;
ssh_address: string | null;
}
// Defines the custom attributes Tiptap will store in the DOM/JSON schema
export interface AppMentionAttributes {
id: string;
label: string;
}