Improved copy function with rich text
This commit is contained in:
@@ -136,12 +136,12 @@ export interface Journal {
|
||||
}
|
||||
|
||||
|
||||
// Updated 2025-03-15
|
||||
// Updated 2025-04-02
|
||||
export interface Journal_Entry {
|
||||
id: string; // actually "id_random"
|
||||
journal_entry_id: string;
|
||||
|
||||
// journal_id: string; // This is the parent journal ID. If deleted, then delete all children journal entries.
|
||||
journal_id: string; // This is the parent journal ID. If deleted, then delete all children journal entries.
|
||||
|
||||
// Essentially this is a change log of journal entries
|
||||
snapshot_id?: string; // This is the original journal ID. If deleted, then delete all children journal entries.
|
||||
@@ -183,6 +183,7 @@ export interface Journal_Entry {
|
||||
|
||||
content?: null|string;
|
||||
content_md_html?: null|string; // Markdown converted to HTML based on content
|
||||
content_md_html_alt?: null|string; // Markdown converted to HTML based on content
|
||||
content_html?: null|string;
|
||||
content_json?: null|string;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user