diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md
index 017e5b6205..fad12709d3 100644
--- a/.github/copilot-instructions.md
+++ b/.github/copilot-instructions.md
@@ -1,5 +1,7 @@
# Trilium Notes - AI Coding Agent Instructions
+> **Note**: When updating this file, also update `CLAUDE.md` in the repository root to keep both AI coding assistants in sync.
+
## Project Overview
Trilium Notes is a hierarchical note-taking application with advanced features like synchronization, scripting, and rich text editing. Built as a TypeScript monorepo using pnpm, it implements a three-layer caching architecture (Becca/Froca/Shaca) with a widget-based UI system and supports extensive user scripting capabilities.
@@ -115,6 +117,15 @@ class MyNoteWidget extends NoteContextAwareWidget {
**Important**: Widgets use jQuery (`this.$widget`) for DOM manipulation. Don't mix React patterns here.
+### Reusable Preact Components
+Common UI components are available in `apps/client/src/widgets/react/` — prefer reusing these over creating custom implementations:
+- `NoItems` - Empty state placeholder with icon and message (use for "no results", "too many items", error states)
+- `ActionButton` - Consistent button styling with icon support
+- `FormTextBox` - Text input with validation and controlled input handling
+- `Slider` - Range slider with label
+- `Checkbox`, `RadioButton` - Form controls
+- `CollapsibleSection` - Expandable content sections
+
## Development Workflow
### Running & Testing
@@ -322,8 +333,26 @@ Trilium provides powerful user scripting capabilities:
- When a translated string contains **interpolated components** (e.g. links, note references) whose order may vary across languages, use `` from `react-i18next` instead of `t()`. This lets translators reorder components freely (e.g. `" in "` vs `"in , "`)
- When adding a new locale, follow the step-by-step guide in `docs/Developer Guide/Developer Guide/Concepts/Internationalisation Translations/Adding a new locale.md`
+#### Client vs Server Translation Usage
+- **Client-side**: `import { t } from "../services/i18n"` with keys in `apps/client/src/translations/en/translation.json`
+- **Server-side**: `import { t } from "i18next"` with keys in `apps/server/src/assets/translations/en/server.json`
+- **Interpolation**: Use `{{variable}}` for normal interpolation; use `{{- variable}}` (with hyphen) for **unescaped** interpolation when the value contains special characters like quotes that shouldn't be HTML-escaped
+
+### Storing User Preferences
+- **Do not use `localStorage`** for user preferences — Trilium has a synced options system that persists across devices
+- To add a new user preference:
+ 1. Add the option type to `OptionDefinitions` in `packages/commons/src/lib/options_interface.ts`
+ 2. Add a default value in `apps/server/src/services/options_init.ts` in the `defaultOptions` array
+ 3. **Whitelist the option** in `apps/server/src/routes/api/options.ts` by adding it to `ALLOWED_OPTIONS` (required for client updates)
+ 4. Use `useTriliumOption("optionName")` hook in React components to read/write the option
+- Available hooks: `useTriliumOption` (string), `useTriliumOptionBool`, `useTriliumOptionInt`, `useTriliumOptionJson`
+- See `docs/Developer Guide/Developer Guide/Concepts/Options/Creating a new option.md` for detailed documentation
+
## Testing Conventions
+- **Write concise tests**: Group related assertions together in a single test case rather than creating many one-shot tests
+- **Extract and test business logic**: When adding pure business logic (e.g., data transformations, migrations, validations), extract it as a separate function and always write unit tests for it
+
```typescript
// ETAPI test pattern
describe("etapi/feature", () => {
diff --git a/CLAUDE.md b/CLAUDE.md
index 4fb8a3fe1d..ebed3e69a6 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -2,6 +2,8 @@
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
+> **Note**: When updating this file, also update `.github/copilot-instructions.md` to keep both AI coding assistants in sync.
+
## Overview
Trilium Notes is a hierarchical note-taking application with synchronization, scripting, and rich text editing. TypeScript monorepo using pnpm with multiple apps and shared packages.
@@ -120,6 +122,15 @@ Frontend widgets in `apps/client/src/widgets/`:
**Widget lifecycle**: `doRenderBody()` for initial render, `refreshWithNote()` for note changes, `entitiesReloadedEvent({loadResults})` for entity updates. Uses jQuery — don't mix React patterns.
+#### Reusable Preact Components
+Common UI components are available in `apps/client/src/widgets/react/` — prefer reusing these over creating custom implementations:
+- `NoItems` - Empty state placeholder with icon and message (use for "no results", "too many items", error states)
+- `ActionButton` - Consistent button styling with icon support
+- `FormTextBox` - Text input with validation and controlled input handling
+- `Slider` - Range slider with label
+- `Checkbox`, `RadioButton` - Form controls
+- `CollapsibleSection` - Expandable content sections
+
Fluent builder pattern: `.child()`, `.class()`, `.css()` chaining with position-based ordering.
### API Architecture
@@ -152,6 +163,14 @@ SQLite via `better-sqlite3`. SQL abstraction in `packages/trilium-core/src/servi
- Schema: `apps/server/src/assets/db/schema.sql`
- Migrations: `apps/server/src/migrations/YYMMDD_HHMM__description.sql`
+### Testing Strategy
+- Server tests run sequentially due to shared database
+- Client tests can run in parallel
+- E2E tests use Playwright for both server and desktop apps
+- Build validation tests check artifact integrity
+- **Write concise tests**: Group related assertions together in a single test case rather than creating many one-shot tests
+- **Extract and test business logic**: When adding pure business logic (e.g., data transformations, migrations, validations), extract it as a separate function and always write unit tests for it
+
### Internationalization
- Translation files in `apps/client/src/translations/`
- Supported languages: English, German, Spanish, French, Romanian, Chinese
@@ -161,6 +180,11 @@ SQLite via `better-sqlite3`. SQL abstraction in `packages/trilium-core/src/servi
- When adding a new locale, follow the step-by-step guide in `docs/Developer Guide/Developer Guide/Concepts/Internationalisation Translations/Adding a new locale.md`
- **Server-side translations** (e.g. hidden subtree titles) go in `apps/server/src/assets/translations/en/server.json`, not in the client `translation.json`
+#### Client vs Server Translation Usage
+- **Client-side**: `import { t } from "../services/i18n"` with keys in `apps/client/src/translations/en/translation.json`
+- **Server-side**: `import { t } from "i18next"` with keys in `apps/server/src/assets/translations/en/server.json`
+- **Interpolation**: Use `{{variable}}` for normal interpolation; use `{{- variable}}` (with hyphen) for **unescaped** interpolation when the value contains special characters like quotes that shouldn't be HTML-escaped
+
### Electron Desktop App
- Desktop entry point: `apps/desktop/src/main.ts`, window management: `apps/server/src/services/window.ts`
- IPC communication: use `electron.ipcMain.on(channel, handler)` on server side, `electron.ipcRenderer.send(channel, data)` on client side
@@ -178,6 +202,16 @@ Use `note.getOwnedAttribute()` for direct, `note.getAttribute()` for inherited.
- **Do not use `crypto.randomUUID()`** or other Web Crypto APIs that require secure contexts - Trilium can run over HTTP, not just HTTPS
- Use `randomString()` from `apps/client/src/services/utils.ts` for generating IDs instead
+### Storing User Preferences
+- **Do not use `localStorage`** for user preferences — Trilium has a synced options system that persists across devices
+- To add a new user preference:
+ 1. Add the option type to `OptionDefinitions` in `packages/commons/src/lib/options_interface.ts`
+ 2. Add a default value in `apps/server/src/services/options_init.ts` in the `defaultOptions` array
+ 3. **Whitelist the option** in `apps/server/src/routes/api/options.ts` by adding it to `ALLOWED_OPTIONS` (required for client updates)
+ 4. Use `useTriliumOption("optionName")` hook in React components to read/write the option
+- Available hooks: `useTriliumOption` (string), `useTriliumOptionBool`, `useTriliumOptionInt`, `useTriliumOptionJson`
+- See `docs/Developer Guide/Developer Guide/Concepts/Options/Creating a new option.md` for detailed documentation
+
### Shared Types Policy
- Types shared between client and server belong in `@triliumnext/commons` (`packages/commons/src/lib/`)
- Import shared types directly from `@triliumnext/commons` - do not re-export them from app-specific modules
diff --git a/apps/client-standalone/package.json b/apps/client-standalone/package.json
index 09ab08f9e1..216bb524fd 100644
--- a/apps/client-standalone/package.json
+++ b/apps/client-standalone/package.json
@@ -57,7 +57,7 @@
"leaflet": "1.9.4",
"leaflet-gpx": "2.2.0",
"mark.js": "8.11.1",
- "marked": "17.0.5",
+ "marked": "18.0.0",
"mermaid": "11.14.0",
"mind-elixir": "5.10.0",
"normalize.css": "8.0.1",
diff --git a/apps/client/package.json b/apps/client/package.json
index 9626b4ccbf..3aea46be67 100644
--- a/apps/client/package.json
+++ b/apps/client/package.json
@@ -61,7 +61,7 @@
"leaflet": "1.9.4",
"leaflet-gpx": "2.2.0",
"mark.js": "8.11.1",
- "marked": "17.0.5",
+ "marked": "18.0.0",
"mermaid": "11.14.0",
"mind-elixir": "5.10.0",
"panzoom": "9.4.4",
@@ -76,7 +76,7 @@
},
"devDependencies": {
"@ckeditor/ckeditor5-inspector": "5.0.0",
- "@prefresh/vite": "2.4.12",
+ "@prefresh/vite": "3.0.0",
"@types/bootstrap": "5.2.10",
"@types/jquery": "4.0.0",
"@types/leaflet": "1.9.21",
diff --git a/apps/client/src/entities/fnote.ts b/apps/client/src/entities/fnote.ts
index 5fe7caf33c..a30a83975a 100644
--- a/apps/client/src/entities/fnote.ts
+++ b/apps/client/src/entities/fnote.ts
@@ -236,6 +236,16 @@ export default class FNote {
return this.hasAttribute("label", "archived");
}
+ /**
+ * Returns true if the note's metadata (title, icon) should not be editable.
+ * This applies to system notes like options, help, and launch bar configuration.
+ */
+ get isMetadataReadOnly() {
+ return utils.isLaunchBarConfig(this.noteId)
+ || this.noteId.startsWith("_help_")
+ || this.noteId.startsWith("_options");
+ }
+
getChildNoteIds() {
return this.children;
}
diff --git a/apps/client/src/services/attributes.spec.ts b/apps/client/src/services/attributes.spec.ts
index 7a949eebc6..f9caa6906d 100644
--- a/apps/client/src/services/attributes.spec.ts
+++ b/apps/client/src/services/attributes.spec.ts
@@ -6,10 +6,8 @@ import froca from "./froca";
import server from "./server.js";
// Spy on server methods to track calls
-// @ts-expect-error the generic typing is causing issues here
-server.put = vi.fn(async (url: string, data?: T) => ({} as T));
-// @ts-expect-error the generic typing is causing issues here
-server.remove = vi.fn(async (url: string) => ({} as T));
+server.put = vi.fn(async () => ({})) as typeof server.put;
+server.remove = vi.fn(async () => ({})) as typeof server.remove;
describe("Set boolean with inheritance", () => {
beforeEach(() => {
diff --git a/apps/client/src/services/branches.ts b/apps/client/src/services/branches.ts
index 8f31060242..15d24a10d7 100644
--- a/apps/client/src/services/branches.ts
+++ b/apps/client/src/services/branches.ts
@@ -120,7 +120,7 @@ async function deleteNotes(branchIdsToDelete: string[], forceDeleteAllClones = f
if (moveToParent) {
try {
- await activateParentNotePath();
+ await activateParentNotePath(branchIdsToDelete);
} catch (e) {
console.error(e);
}
@@ -152,13 +152,28 @@ async function deleteNotes(branchIdsToDelete: string[], forceDeleteAllClones = f
return true;
}
-async function activateParentNotePath() {
- // this is not perfect, maybe we should find the next/previous sibling, but that's more complex
+async function activateParentNotePath(branchIdsToDelete: string[]) {
const activeContext = appContext.tabManager.getActiveContext();
- const parentNotePathArr = activeContext?.notePathArray.slice(0, -1);
+ const activeNotePath = activeContext?.notePathArray ?? [];
- if (parentNotePathArr && parentNotePathArr.length > 0) {
- activeContext?.setNote(parentNotePathArr.join("/"));
+ // Find the deleted branch that appears earliest in the active note's path
+ let earliestIndex = activeNotePath.length;
+ for (const branchId of branchIdsToDelete) {
+ const branch = froca.getBranch(branchId);
+ if (branch) {
+ const index = activeNotePath.indexOf(branch.noteId);
+ if (index !== -1 && index < earliestIndex) {
+ earliestIndex = index;
+ }
+ }
+ }
+
+ // Navigate to the parent of the highest deleted ancestor
+ if (earliestIndex < activeNotePath.length) {
+ const parentPath = activeNotePath.slice(0, earliestIndex);
+ if (parentPath.length > 0) {
+ await activeContext?.setNote(parentPath.join("/"));
+ }
}
}
diff --git a/apps/client/src/services/llm_chat.ts b/apps/client/src/services/llm_chat.ts
index fa0a0279d3..cd6ab3e63f 100644
--- a/apps/client/src/services/llm_chat.ts
+++ b/apps/client/src/services/llm_chat.ts
@@ -27,7 +27,8 @@ export interface StreamCallbacks {
export async function streamChatCompletion(
messages: LlmMessage[],
config: LlmChatConfig,
- callbacks: StreamCallbacks
+ callbacks: StreamCallbacks,
+ abortSignal?: AbortSignal
): Promise {
const headers = await server.getHeaders();
@@ -37,7 +38,8 @@ export async function streamChatCompletion(
...headers,
"Content-Type": "application/json"
} as HeadersInit,
- body: JSON.stringify({ messages, config })
+ body: JSON.stringify({ messages, config }),
+ signal: abortSignal
});
if (!response.ok) {
diff --git a/apps/client/src/services/note_autocomplete.ts b/apps/client/src/services/note_autocomplete.ts
index 9ca4fa86fb..18982307ac 100644
--- a/apps/client/src/services/note_autocomplete.ts
+++ b/apps/client/src/services/note_autocomplete.ts
@@ -68,7 +68,8 @@ async function autocompleteSourceForCKEditor(queryText: string) {
name: row.notePathTitle || "",
link: `#${row.notePath}`,
notePath: row.notePath,
- highlightedNotePathTitle: row.highlightedNotePathTitle
+ highlightedNotePathTitle: row.highlightedNotePathTitle,
+ icon: row.icon
};
})
);
diff --git a/apps/client/src/services/render.tsx b/apps/client/src/services/render.tsx
index 682efa8871..31450b3a82 100644
--- a/apps/client/src/services/render.tsx
+++ b/apps/client/src/services/render.tsx
@@ -18,6 +18,10 @@ async function render(note: FNote, $el: JQuery, onError?: ErrorHand
for (const renderNoteId of renderNoteIds) {
const bundle = await server.postWithSilentInternalServerError(`script/bundle/${renderNoteId}`);
+ if (!bundle) {
+ throw new Error(`Script note '${renderNoteId}' could not be loaded. It may be protected and require an active protected session.`);
+ }
+
const $scriptContainer = $("");
$el.append($scriptContainer);
diff --git a/apps/client/src/services/spaced_update.spec.ts b/apps/client/src/services/spaced_update.spec.ts
new file mode 100644
index 0000000000..ab649f3435
--- /dev/null
+++ b/apps/client/src/services/spaced_update.spec.ts
@@ -0,0 +1,87 @@
+import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
+
+import SpacedUpdate from "./spaced_update";
+
+// Mock logError which is a global in Trilium
+vi.stubGlobal("logError", vi.fn());
+
+describe("SpacedUpdate", () => {
+ beforeEach(() => {
+ vi.useFakeTimers();
+ });
+
+ afterEach(() => {
+ vi.useRealTimers();
+ });
+
+ it("should only call updater once per interval even with multiple pending callbacks", async () => {
+ const updater = vi.fn(async () => {
+ // Simulate a slow network request - this is where the race condition occurs
+ await new Promise((resolve) => setTimeout(resolve, 100));
+ });
+
+ const spacedUpdate = new SpacedUpdate(updater, 50);
+
+ // Simulate rapid typing - each keystroke calls scheduleUpdate()
+ // This queues multiple setTimeout callbacks due to recursive scheduleUpdate() calls
+ for (let i = 0; i < 10; i++) {
+ spacedUpdate.scheduleUpdate();
+ // Small delay between keystrokes
+ await vi.advanceTimersByTimeAsync(5);
+ }
+
+ // Advance time past the update interval to trigger the update
+ await vi.advanceTimersByTimeAsync(100);
+
+ // Let the "network request" complete and any pending callbacks run
+ await vi.advanceTimersByTimeAsync(200);
+
+ // The updater should have been called only ONCE, not multiple times
+ // With the bug, multiple pending setTimeout callbacks would all pass the time check
+ // during the async updater call and trigger multiple concurrent requests
+ expect(updater).toHaveBeenCalledTimes(1);
+ });
+
+ it("should call updater again if changes occur during the update", async () => {
+ const updater = vi.fn(async () => {
+ await new Promise((resolve) => setTimeout(resolve, 50));
+ });
+
+ const spacedUpdate = new SpacedUpdate(updater, 30);
+
+ // First update
+ spacedUpdate.scheduleUpdate();
+ await vi.advanceTimersByTimeAsync(40);
+
+ // Schedule another update while the first one is in progress
+ spacedUpdate.scheduleUpdate();
+
+ // Let first update complete
+ await vi.advanceTimersByTimeAsync(60);
+
+ // Advance past the interval again for the second update
+ await vi.advanceTimersByTimeAsync(100);
+
+ // Should have been called twice - once for each distinct change period
+ expect(updater).toHaveBeenCalledTimes(2);
+ });
+
+ it("should restore changed flag on error so retry can happen", async () => {
+ const updater = vi.fn()
+ .mockRejectedValueOnce(new Error("Network error"))
+ .mockResolvedValue(undefined);
+
+ const spacedUpdate = new SpacedUpdate(updater, 50);
+
+ spacedUpdate.scheduleUpdate();
+
+ // Advance to trigger first update (which will fail)
+ await vi.advanceTimersByTimeAsync(60);
+
+ // The error should have restored the changed flag, so scheduling again should work
+ spacedUpdate.scheduleUpdate();
+ await vi.advanceTimersByTimeAsync(60);
+
+ expect(updater).toHaveBeenCalledTimes(2);
+ });
+});
diff --git a/apps/client/src/services/spaced_update.ts b/apps/client/src/services/spaced_update.ts
index 3804c4949b..13cdbd7b5e 100644
--- a/apps/client/src/services/spaced_update.ts
+++ b/apps/client/src/services/spaced_update.ts
@@ -77,16 +77,22 @@ export default class SpacedUpdate {
}
if (Date.now() - this.lastUpdated > this.updateInterval) {
+ // Update these BEFORE the async call to prevent race conditions.
+ // Multiple setTimeout callbacks may be pending from recursive scheduleUpdate() calls.
+ // Without this, they would all pass the time check during the await and trigger multiple requests.
+ this.lastUpdated = Date.now();
+ this.changed = false;
+
this.onStateChanged("saving");
try {
await this.updater();
this.onStateChanged("saved");
- this.changed = false;
} catch (e) {
+ // Restore changed flag on error so a retry can happen
+ this.changed = true;
this.onStateChanged("error");
logError(getErrorMessage(e));
}
- this.lastUpdated = Date.now();
} else {
// update isn't triggered but changes are still pending, so we need to schedule another check
this.scheduleUpdate();
diff --git a/apps/client/src/services/syntax_highlight.ts b/apps/client/src/services/syntax_highlight.ts
index 3b2c35f682..1aa9084ce4 100644
--- a/apps/client/src/services/syntax_highlight.ts
+++ b/apps/client/src/services/syntax_highlight.ts
@@ -33,6 +33,14 @@ export async function formatCodeBlocks($container: JQuery
) {
applySingleBlockSyntaxHighlight($(codeBlock), normalizedMimeType);
}
}
+
+ // Add click-to-copy for inline code (code elements not inside pre)
+ if (glob.device !== "print") {
+ const inlineCodeElements = $container.find("code:not(pre code)");
+ for (const inlineCode of inlineCodeElements) {
+ applyInlineCodeCopy($(inlineCode));
+ }
+ }
}
export function applyCopyToClipboardButton($codeBlock: JQuery) {
@@ -51,6 +59,23 @@ export function applyCopyToClipboardButton($codeBlock: JQuery) {
$codeBlock.parent().append($copyButton);
}
+export function applyInlineCodeCopy($inlineCode: JQuery) {
+ $inlineCode
+ .addClass("copyable-inline-code")
+ .attr("title", t("code_block.click_to_copy"))
+ .off("click")
+ .on("click", (e) => {
+ e.stopPropagation();
+
+ const text = $inlineCode.text();
+ if (!isShare) {
+ copyTextWithToast(text);
+ } else {
+ copyText(text);
+ }
+ });
+}
+
/**
* Applies syntax highlight to the given code block (assumed to be ), using highlight.js.
*/
diff --git a/apps/client/src/services/ws.ts b/apps/client/src/services/ws.ts
index 0b3b7eb464..23a24f5fc4 100644
--- a/apps/client/src/services/ws.ts
+++ b/apps/client/src/services/ws.ts
@@ -88,7 +88,7 @@ export async function dispatchMessage(message: WebSocketMessage) {
} else if (messageType === "api-log-messages") {
appContext.triggerEvent("apiLogMessages", { noteId: msg.noteId, messages: msg.messages });
} else if (messageType === "toast") {
- toastService.showMessage(msg.message);
+ toastService.showMessage(msg.message, msg.timeout);
} else if (messageType === "execute-script") {
const originEntity = msg.originEntityId ? await froca.getNote(msg.originEntityId) : null;
diff --git a/apps/client/src/setup.tsx b/apps/client/src/setup.tsx
index 4d85277433..6606baf4d2 100644
--- a/apps/client/src/setup.tsx
+++ b/apps/client/src/setup.tsx
@@ -282,7 +282,7 @@ function SyncFromServer({ setState }: { setState: (state: State) => void }) {
async function handleFinishSetup() {
try {
const resp = await server.post("setup/sync-from-server", {
- syncServerHost: syncServerHost.trim(),
+ syncServerHost: syncServerHost.trim().replace(/\/+$/, ""),
syncProxy: syncProxy.trim(),
password
});
diff --git a/apps/client/src/stylesheets/style.css b/apps/client/src/stylesheets/style.css
index 536db2d9b5..baff2d14dc 100644
--- a/apps/client/src/stylesheets/style.css
+++ b/apps/client/src/stylesheets/style.css
@@ -1230,6 +1230,43 @@ a.external:not(.no-arrow):after, a[href^="http://"]:not(.no-arrow):after, a[href
width: 100%;
}
+/* Expandable include note styles */
+.include-note-title-row {
+ display: flex;
+ align-items: center;
+ gap: 5px;
+ cursor: pointer;
+}
+
+.include-note-title-row .include-note-title {
+ margin: 0;
+}
+
+.include-note-toggle {
+ background: none;
+ border: none;
+ padding: 2px;
+ cursor: pointer;
+ font-size: 1.2em;
+ color: var(--main-text-color);
+ transition: transform 0.2s ease;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.include-note-toggle:hover {
+ color: var(--main-link-color);
+}
+
+.include-note-toggle.expanded {
+ transform: rotate(90deg);
+}
+
+.include-note[data-box-size="expandable"] .include-note-content {
+ margin-top: 10px;
+}
+
.alert {
padding: 8px 14px;
width: auto;
diff --git a/apps/client/src/translations/ar/translation.json b/apps/client/src/translations/ar/translation.json
index 965ada6c42..d2c9d7a44d 100644
--- a/apps/client/src/translations/ar/translation.json
+++ b/apps/client/src/translations/ar/translation.json
@@ -393,9 +393,7 @@
},
"delete_notes": {
"close": "غلق",
- "cancel": "الغاء",
- "ok": "نعم",
- "delete_notes_preview": "حذف معاينة الملاحظات"
+ "cancel": "الغاء"
},
"export": {
"close": "غلق",
@@ -626,7 +624,8 @@
"date-and-time": "التاريخ والوقت",
"no_backup_yet": "لايوجد نسخة احتياطية لحد الان",
"enable_daily_backup": "تمكين النسخ الاحتياطي اليومي",
- "backup_database_now": "نسخ اختياطي لقاعدة البيانات الان"
+ "backup_database_now": "نسخ اختياطي لقاعدة البيانات الان",
+ "download": "تنزيل"
},
"etapi": {
"created": "تم الأنشاء",
@@ -663,7 +662,6 @@
"default_shortcuts": "اختصارات افتراضية"
},
"sync_2": {
- "timeout_unit": "ميلي ثانية",
"note": "ملاحظة",
"save": "حفظ",
"help": "المساعدة",
diff --git a/apps/client/src/translations/ca/translation.json b/apps/client/src/translations/ca/translation.json
index 32de8b1615..d4cbd59d2d 100644
--- a/apps/client/src/translations/ca/translation.json
+++ b/apps/client/src/translations/ca/translation.json
@@ -25,8 +25,7 @@
},
"delete_notes": {
"close": "Tanca",
- "cancel": "Cancel·la",
- "ok": "OK"
+ "cancel": "Cancel·la"
},
"export": {
"close": "Tanca",
diff --git a/apps/client/src/translations/cn/translation.json b/apps/client/src/translations/cn/translation.json
index 8abc10324e..6d2b66ebd3 100644
--- a/apps/client/src/translations/cn/translation.json
+++ b/apps/client/src/translations/cn/translation.json
@@ -88,7 +88,6 @@
"also_delete_note": "同时删除笔记"
},
"delete_notes": {
- "delete_notes_preview": "删除笔记预览",
"close": "关闭",
"delete_all_clones_description": "同时删除所有克隆(可以在最近修改中撤消)",
"erase_notes_description": "通常(软)删除仅标记笔记为已删除,可以在一段时间内通过最近修改对话框撤消。选中此选项将立即擦除笔记,不可撤销。",
@@ -96,9 +95,7 @@
"notes_to_be_deleted": "将删除以下笔记 ({{notesCount}})",
"no_note_to_delete": "没有笔记将被删除(仅克隆)。",
"broken_relations_to_be_deleted": "将删除以下关系并断开连接 ({{ relationCount}})",
- "cancel": "取消",
- "ok": "确定",
- "deleted_relation_text": "笔记 {{- note}} (将被删除的笔记) 被以下关系 {{- relation}} 引用, 来自 {{- source}}。"
+ "cancel": "取消"
},
"export": {
"export_note_title": "导出笔记",
@@ -368,7 +365,7 @@
"calendar_root": "标记应用作为每日笔记的根。只应标记一个笔记。",
"archived": "含有此标签的笔记默认在搜索结果中不可见(也适用于跳转到、添加链接对话框等)。",
"exclude_from_export": "笔记(及其子树)不会包含在任何笔记导出中",
- "run": "定义脚本应运行的事件。可能的值包括:\n\nfrontendStartup - Trilium前端启动时(或刷新时),但不会在移动端执行。 \nmobileStartup - Trilium前端启动时(或刷新时), 在移动端会执行。 \nbackendStartup - Trilium后端启动时 \nhourly - 每小时运行一次。您可以使用附加标签runAtHour指定小时。 \ndaily - 每天运行一次 \n ",
+ "run": "定义脚本应运行的事件。可能的值包括:\n\nfrontendStartup - Trilium前端启动时(或刷新时),但不会在移动端执行。 \nmobileStartup - Trilium前端启动时(或刷新时), 在移动端会执行。 \nbackendStartup - Trilium后端启动时。 \nhourly - 每小时运行一次。您可以使用附加标签runAtHour指定小时。 \ndaily - 每天运行一次。 \n ",
"run_on_instance": "定义应在哪个Trilium实例上运行。默认为所有实例。",
"run_at_hour": "应在哪个小时运行。应与#run=hourly一起使用。可以多次定义,以便一天内运行多次。",
"disable_inclusion": "含有此标签的脚本不会包含在父脚本执行中。",
@@ -804,7 +801,10 @@
"expand_first_level": "展开直接子代",
"expand_nth_level": "展开 {{depth}} 层",
"expand_all_levels": "展开所有层级",
- "hide_child_notes": "隐藏树中的子笔记"
+ "hide_child_notes": "隐藏树中的子笔记",
+ "open_all_in_tabs": "全部打开",
+ "open_all_in_tabs_tooltip": "在新标签页中打开所有结果",
+ "open_all_confirm": "这将在新标签页中打开 {{count}} 个笔记。继续吗?"
},
"edited_notes": {
"no_edited_notes_found": "今天还没有编辑过的笔记...",
@@ -858,7 +858,8 @@
"collapse": "折叠到正常大小",
"title": "笔记地图",
"fix-nodes": "固定节点",
- "link-distance": "链接距离"
+ "link-distance": "链接距离",
+ "too-many-notes": "此子树包含 {{count}} 个笔记,超过了笔记地图中可显示的 {{max}} 个笔记的限制。"
},
"note_paths": {
"title": "笔记路径",
@@ -1063,7 +1064,8 @@
"note_already_in_diagram": "笔记 \"{{title}}\" 已经在图中。",
"enter_title_of_new_note": "输入新笔记的标题",
"default_new_note_title": "新笔记",
- "click_on_canvas_to_place_new_note": "点击画布以放置新笔记"
+ "click_on_canvas_to_place_new_note": "点击画布以放置新笔记",
+ "rename_relation": "重命名关系"
},
"backend_log": {
"refresh": "刷新"
@@ -1337,7 +1339,8 @@
"date-and-time": "日期和时间",
"path": "路径",
"database_backed_up_to": "数据库已备份到 {{backupFilePath}}",
- "no_backup_yet": "尚无备份"
+ "no_backup_yet": "尚无备份",
+ "download": "下载"
},
"etapi": {
"title": "ETAPI",
@@ -1435,9 +1438,15 @@
"spellcheck": {
"title": "拼写检查",
"description": "这些选项仅适用于桌面版本,浏览器将使用其原生的拼写检查功能。",
- "enable": "启用拼写检查",
- "language_code_label": "语言代码",
- "restart-required": "拼写检查选项的更改将在应用重启后生效。"
+ "enable": "拼写检查",
+ "language_code_label": "拼写检查语言",
+ "restart-required": "拼写检查选项的更改将在应用重启后生效。",
+ "custom_dictionary_title": "自定义词典",
+ "custom_dictionary_description": "添加到词典中的单词会在您的所有设备上同步。",
+ "custom_dictionary_edit": "自定义词",
+ "custom_dictionary_edit_description": "编辑拼写检查器不应标记的单词列表。更改将在重启后生效。",
+ "custom_dictionary_open": "编辑词典",
+ "related_description": "配置拼写检查语言和自定义词典。"
},
"sync_2": {
"config_title": "同步配置",
@@ -1453,7 +1462,7 @@
"test_description": "测试和同步服务器之间的连接。如果同步服务器没有初始化,会将本地文档同步到同步服务器上。",
"test_button": "测试同步",
"handshake_failed": "同步服务器握手失败,错误:{{message}}",
- "timeout_unit": "毫秒"
+ "timeout_description": "同步连接速度慢时,应该等待多久才放弃?如果网络不稳定,请增加等待时间。"
},
"api_log": {
"close": "关闭"
@@ -1876,7 +1885,7 @@
},
"content_language": {
"title": "内容语言",
- "description": "选择一种或多种语言出现在只读或可编辑文本注释的基本属性,这将支持拼写检查或从右向左之类的功能。"
+ "description": "在只读或可编辑文本笔记的“基本属性”部分,选择一种或多种语言,这些语言将显示在语言选择列表中。这将启用拼写检查、从右到左的阅读支持和文本提取(OCR)等功能。"
},
"switch_layout_button": {
"title_vertical": "将编辑面板移至底部",
@@ -2231,7 +2240,9 @@
"sample_xy": "散点图",
"sample_venn": "韦恩图",
"sample_ishikawa": "鱼骨图",
- "placeholder": "输入你的美人鱼图的内容,或者使用下面的示例图之一。"
+ "placeholder": "输入你的美人鱼图的内容,或者使用下面的示例图之一。",
+ "sample_treeview": "树形视图",
+ "sample_wardley": "沃德利地图"
},
"llm_chat": {
"placeholder": "输入消息…",
@@ -2262,7 +2273,8 @@
"note_context_disabled": "点击即可将当前注释添加到上下文中",
"no_provider_message": "未配置人工智能提供商。添加一个即可开始对话。",
"add_provider": "添加人工智能提供商",
- "note_tools": "笔记访问"
+ "note_tools": "笔记访问",
+ "sources_summary": "来自 {{sites}} 个网站的 {{count}} 个来源"
},
"sidebar_chat": {
"title": "AI对话",
@@ -2285,7 +2297,10 @@
"processing": "正在处理...",
"processing_started": "OCR识别已开始。请稍候片刻并刷新页面。",
"processing_failed": "OCR处理启动失败",
- "view_extracted_text": "查看提取的文本(OCR)"
+ "view_extracted_text": "查看提取的文本(OCR)",
+ "processing_complete": "OCR识别处理完成。",
+ "text_filtered_low_confidence": "OCR 检测到文本,置信度为 {{confidence}}% ,但由于您的最小阈值为 {{threshold}}% ,因此该文本已被丢弃。",
+ "open_media_settings": "打开设置"
},
"mind-map": {
"addChild": "添加子节点",
@@ -2303,6 +2318,13 @@
},
"llm": {
"settings_description": "配置人工智能和大语言模型集成。",
- "add_provider": "添加提供商"
+ "add_provider": "添加提供商",
+ "settings_title": "AI / LLM",
+ "feature_not_enabled": "在“设置”→“高级”→“实验性功能”中启用 LLM 实验性功能,即可使用 AI 集成。",
+ "add_provider_title": "添加AI供应商",
+ "configured_providers": "已配置的供应商",
+ "no_providers_configured": "尚未配置任何供应商。",
+ "provider_name": "名称",
+ "provider_type": "供应商"
}
}
diff --git a/apps/client/src/translations/cs/translation.json b/apps/client/src/translations/cs/translation.json
index 5298bc48af..459a097d57 100644
--- a/apps/client/src/translations/cs/translation.json
+++ b/apps/client/src/translations/cs/translation.json
@@ -77,16 +77,13 @@
},
"delete_notes": {
"cancel": "Zrušit",
- "ok": "OK",
"close": "Zavřít",
- "delete_notes_preview": "Odstranit náhled poznámek",
"delete_all_clones_description": "Odstraňte také všechny klony (lze vrátit zpět v nedávných změnách)",
"erase_notes_description": "Normální (měkké) smazání pouze označí poznámky jako smazané a lze je během určité doby obnovit (v dialogovém okně posledních změn). Zaškrtnutím této možnosti se poznámky okamžitě vymažou a nebude možné je obnovit.",
"erase_notes_warning": "Trvale smažte poznámky (nelze vrátit zpět), včetně všech klonů. Tím se vynutí opětovné načtení aplikace.",
"notes_to_be_deleted": "Následující poznámky budou smazány ({{notesCount}})",
"no_note_to_delete": "Žádná poznámka nebude smazána (pouze klony).",
- "broken_relations_to_be_deleted": "Následující vazby budou přerušeny a smazány ({{relationCount}})",
- "deleted_relation_text": "Poznámka {{- note}} (bude smazána) je odkazována vazbou {{- relation}} pocházející z {{- source}}."
+ "broken_relations_to_be_deleted": "Následující vazby budou přerušeny a smazány ({{relationCount}})"
},
"export": {
"close": "Zavřít",
@@ -1508,7 +1505,6 @@
"config_title": "Konfigurace Synchronizace",
"server_address": "Adresa instance serveru",
"timeout": "Časový limit synchronizace",
- "timeout_unit": "milisekund",
"proxy_label": "Proxy server pro synchronizaci (volitelné)",
"note": "Poznámka",
"note_description": "Pokud ponecháte nastavení proxy prázdné, bude použit systémový proxy (platí pouze pro desktop/electron build).",
diff --git a/apps/client/src/translations/de/translation.json b/apps/client/src/translations/de/translation.json
index 358c92cf38..644b77a63e 100644
--- a/apps/client/src/translations/de/translation.json
+++ b/apps/client/src/translations/de/translation.json
@@ -88,7 +88,6 @@
"also_delete_note": "Auch die Notiz löschen"
},
"delete_notes": {
- "delete_notes_preview": "Vorschau der Notizen löschen",
"close": "Schließen",
"delete_all_clones_description": "auch alle Klone löschen (kann bei letzte Änderungen rückgängig gemacht werden)",
"erase_notes_description": "Beim normalen (vorläufigen) Löschen werden die Notizen nur als gelöscht markiert und sie können innerhalb eines bestimmten Zeitraums (im Dialogfeld „Letzte Änderungen“) wiederhergestellt werden. Wenn du diese Option aktivierst, werden die Notizen sofort gelöscht und es ist nicht möglich, die Notizen wiederherzustellen.",
@@ -96,9 +95,7 @@
"notes_to_be_deleted": "Folgende Notizen werden gelöscht ({{notesCount}})",
"no_note_to_delete": "Es werden keine Notizen gelöscht (nur Klone).",
"broken_relations_to_be_deleted": "Folgende Beziehungen werden gelöst und gelöscht ({{ relationCount}})",
- "cancel": "Abbrechen",
- "ok": "OK",
- "deleted_relation_text": "Notiz {{- note}} (soll gelöscht werden) wird von Beziehung {{- relation}} ausgehend von {{- source}} referenziert."
+ "cancel": "Abbrechen"
},
"export": {
"export_note_title": "Notiz exportieren",
@@ -1401,8 +1398,7 @@
"test_title": "Synchronisierungstest",
"test_description": "Dadurch werden die Verbindung und der Handshake zum Synchronisierungsserver getestet. Wenn der Synchronisierungsserver nicht initialisiert ist, wird er dadurch für die Synchronisierung mit dem lokalen Dokument eingerichtet.",
"test_button": "Teste die Synchronisierung",
- "handshake_failed": "Handshake des Synchronisierungsservers fehlgeschlagen, Fehler: {{message}}",
- "timeout_unit": "Millisekunden"
+ "handshake_failed": "Handshake des Synchronisierungsservers fehlgeschlagen, Fehler: {{message}}"
},
"api_log": {
"close": "Schließen"
diff --git a/apps/client/src/translations/el/translation.json b/apps/client/src/translations/el/translation.json
index 7cb1f9b72d..d502d68fa0 100644
--- a/apps/client/src/translations/el/translation.json
+++ b/apps/client/src/translations/el/translation.json
@@ -4,7 +4,7 @@
"homepage": "Αρχική Σελίδα:",
"app_version": "Έκδοση εφαρμογής:",
"db_version": "Έκδοση βάσης δεδομένων:",
- "sync_version": "Έκδοση πρωτοκόλου συγχρονισμού:",
+ "sync_version": "Έκδοση συγχρονισμού:",
"build_date": "Ημερομηνία χτισίματος εφαρμογής:",
"build_revision": "Αριθμός αναθεώρησης χτισίματος:",
"data_directory": "Φάκελος δεδομένων:"
diff --git a/apps/client/src/translations/en/translation.json b/apps/client/src/translations/en/translation.json
index 26fefe47ec..70a2fad94b 100644
--- a/apps/client/src/translations/en/translation.json
+++ b/apps/client/src/translations/en/translation.json
@@ -88,17 +88,23 @@
"also_delete_note": "Also delete the note"
},
"delete_notes": {
- "delete_notes_preview": "Delete notes preview",
+ "title": "Delete notes",
"close": "Close",
+ "clones_label": "Clones",
+ "delete_clones_description_one": "Also delete {{count}} other clone. Can be undone in recent changes.",
+ "delete_clones_description_other": "Also delete {{count}} other clones. Can be undone in recent changes.",
"delete_all_clones_description": "Delete also all clones (can be undone in recent changes)",
- "erase_notes_description": "Normal (soft) deletion only marks the notes as deleted and they can be undeleted (in recent changes dialog) within a period of time. Checking this option will erase the notes immediately and it won't be possible to undelete the notes.",
+ "erase_notes_label": "Erase permanently",
+ "erase_notes_description": "Erase notes immediately instead of soft deletion. This cannot be undone and will force application reload.",
"erase_notes_warning": "Erase notes permanently (can't be undone), including all clones. This will force application reload.",
- "notes_to_be_deleted": "Following notes will be deleted ({{notesCount}})",
+ "notes_to_be_deleted": "Notes to be deleted ({{notesCount}})",
"no_note_to_delete": "No note will be deleted (only clones).",
- "broken_relations_to_be_deleted": "Following relations will be broken and deleted ({{ relationCount}})",
+ "broken_relations_to_be_deleted": "Broken relations ({{relationCount}})",
+ "table_note_with_relation": "Note with relation",
+ "table_relation": "Relation",
+ "table_points_to": "Points to (deleted)",
"cancel": "Cancel",
- "ok": "OK",
- "deleted_relation_text": "Note {{- note}} (to be deleted) is referenced by relation {{- relation}} originating from {{- source}}."
+ "delete": "Delete"
},
"export": {
"export_note_title": "Export note",
@@ -209,6 +215,7 @@
"box_size_small": "small (~ 10 lines)",
"box_size_medium": "medium (~ 30 lines)",
"box_size_full": "full (box shows complete text)",
+ "box_size_expandable": "expandable (collapsed by default)",
"button_include": "Include note"
},
"info": {
@@ -806,7 +813,11 @@
"board": "Board",
"presentation": "Presentation",
"include_archived_notes": "Show archived notes",
- "hide_child_notes": "Hide child notes in tree"
+ "hide_child_notes": "Hide child notes in tree",
+ "open_all_in_tabs": "Open all",
+ "open_all_in_tabs_tooltip": "Open all results in new tabs",
+ "open_all_confirm": "This will open {{count}} notes in new tabs. Continue?",
+ "open_all_too_many": "Too many results ({{count}}). Maximum is {{max}}."
},
"edited_notes": {
"no_edited_notes_found": "No edited notes on this day yet...",
@@ -860,7 +871,8 @@
"collapse": "Collapse to normal size",
"title": "Note Map",
"fix-nodes": "Fix nodes",
- "link-distance": "Link distance"
+ "link-distance": "Link distance",
+ "too-many-notes": "This subtree contains {{count}} notes, which exceeds the limit of {{max}} that can be displayed in the note map."
},
"note_paths": {
"title": "Note Paths",
@@ -1401,7 +1413,8 @@
"date-and-time": "Date & time",
"path": "Path",
"database_backed_up_to": "Database has been backed up to {{backupFilePath}}",
- "no_backup_yet": "no backup yet"
+ "no_backup_yet": "no backup yet",
+ "download": "Download"
},
"etapi": {
"title": "ETAPI",
@@ -1513,7 +1526,7 @@
"config_title": "Sync Configuration",
"server_address": "Server instance address",
"timeout": "Sync timeout",
- "timeout_unit": "milliseconds",
+ "timeout_description": "How long to wait before giving up on a slow sync connection. Increase if you have an unstable network.",
"proxy_label": "Sync proxy server (optional)",
"note": "Note",
"note_description": "If you leave the proxy setting blank, the system proxy will be used (applies to desktop/electron build only).",
@@ -1664,7 +1677,8 @@
"note_context_enabled": "Click to disable note context: {{title}}",
"note_context_disabled": "Click to include current note in context",
"no_provider_message": "No AI provider configured. Add one to start chatting.",
- "add_provider": "Add AI Provider"
+ "add_provider": "Add AI Provider",
+ "stop": "Stop"
},
"sidebar_chat": {
"title": "AI Chat",
@@ -1870,7 +1884,8 @@
"theme_none": "No syntax highlighting",
"theme_group_light": "Light themes",
"theme_group_dark": "Dark themes",
- "copy_title": "Copy to clipboard"
+ "copy_title": "Copy to clipboard",
+ "click_to_copy": "Click to copy"
},
"classic_editor_toolbar": {
"title": "Formatting"
@@ -2418,7 +2433,11 @@
"web_search": "Web search",
"note_in_parent": " in ",
"get_attachment": "Get attachment",
- "get_attachment_content": "Read attachment content"
+ "get_attachment_content": "Read attachment content",
+ "rename_note": "Rename note",
+ "delete_note": "Delete note",
+ "move_note": "Move note",
+ "clone_note": "Clone note"
}
}
}
diff --git a/apps/client/src/translations/es/translation.json b/apps/client/src/translations/es/translation.json
index 2b6a667856..c2ea5b0a0c 100644
--- a/apps/client/src/translations/es/translation.json
+++ b/apps/client/src/translations/es/translation.json
@@ -88,7 +88,6 @@
"also_delete_note": "También eliminar la nota"
},
"delete_notes": {
- "delete_notes_preview": "Eliminar vista previa de notas",
"close": "Cerrar",
"delete_all_clones_description": "Eliminar también todos los clones (se puede deshacer en cambios recientes)",
"erase_notes_description": "La eliminación normal (suave) solo marca las notas como eliminadas y se pueden recuperar (en el cuadro de diálogo de cambios recientes) dentro de un periodo de tiempo. Al marcar esta opción se borrarán las notas inmediatamente y no será posible recuperarlas.",
@@ -96,9 +95,7 @@
"notes_to_be_deleted": "Las siguientes notas serán eliminadas ({{notesCount}})",
"no_note_to_delete": "No se eliminará ninguna nota (solo clones).",
"broken_relations_to_be_deleted": "Las siguientes relaciones se romperán y serán eliminadas ({{ relationCount}})",
- "cancel": "Cancelar",
- "ok": "Aceptar",
- "deleted_relation_text": "Nota {{- note}} (para ser eliminada) está referenciado por la relación {{- relation}} que se origina en {{- source}}."
+ "cancel": "Cancelar"
},
"export": {
"export_note_title": "Exportar nota",
@@ -1332,7 +1329,8 @@
"date-and-time": "Fecha y hora",
"path": "Ruta",
"database_backed_up_to": "Se ha realizado una copia de seguridad de la base de datos en {{backupFilePath}}",
- "no_backup_yet": "no hay copia de seguridad todavía"
+ "no_backup_yet": "no hay copia de seguridad todavía",
+ "download": "Descargar"
},
"etapi": {
"title": "ETAPI",
@@ -1438,7 +1436,6 @@
"config_title": "Configuración de sincronización",
"server_address": "Dirección de la instancia del servidor",
"timeout": "Tiempo de espera de sincronización (milisegundos)",
- "timeout_unit": "milisegundos",
"proxy_label": "Sincronizar servidor proxy (opcional)",
"note": "Nota",
"note_description": "Si deja la configuración del proxy en blanco, se utilizará el proxy del sistema (se aplica únicamente a la compilación de escritorio/electron).",
diff --git a/apps/client/src/translations/fi/translation.json b/apps/client/src/translations/fi/translation.json
index fe6d636f6e..6791899ea4 100644
--- a/apps/client/src/translations/fi/translation.json
+++ b/apps/client/src/translations/fi/translation.json
@@ -62,12 +62,10 @@
"also_delete_note": "Poista myös muistio"
},
"delete_notes": {
- "delete_notes_preview": "Poista muistion esikatselu",
"close": "Sulje",
"notes_to_be_deleted": "Seuraavat muistiot tullaan poistamaan ({{notesCount}})",
"no_note_to_delete": "Muistioita ei poisteta (vain kopiot).",
- "cancel": "Peruuta",
- "ok": "OK"
+ "cancel": "Peruuta"
},
"export": {
"export_note_title": "Vie muistio",
diff --git a/apps/client/src/translations/fr/translation.json b/apps/client/src/translations/fr/translation.json
index 590c4e184d..082f172a47 100644
--- a/apps/client/src/translations/fr/translation.json
+++ b/apps/client/src/translations/fr/translation.json
@@ -88,7 +88,6 @@
"also_delete_note": "Supprimer également la note"
},
"delete_notes": {
- "delete_notes_preview": "Supprimer la note",
"close": "Fermer",
"delete_all_clones_description": "Supprimer aussi les clones (peut être annulé dans des modifications récentes)",
"erase_notes_description": "La suppression normale (douce) marque uniquement les notes comme supprimées et elles peuvent être restaurées (dans la boîte de dialogue des Modifications récentes) dans un délai donné. Cocher cette option effacera les notes immédiatement et il ne sera pas possible de les restaurer.",
@@ -96,9 +95,7 @@
"notes_to_be_deleted": "Les notes suivantes seront supprimées ({{notesCount}})",
"no_note_to_delete": "Aucune note ne sera supprimée (uniquement les clones).",
"broken_relations_to_be_deleted": "Les relations suivantes seront rompues et supprimées ({{ relationCount}})",
- "cancel": "Annuler",
- "ok": "OK",
- "deleted_relation_text": "Note {{- note}} (à supprimer) est référencée dans la relation {{- relation}} provenant de {{- source}}."
+ "cancel": "Annuler"
},
"export": {
"export_note_title": "Exporter la note",
@@ -1406,8 +1403,7 @@
"test_title": "Test de synchronisation",
"test_description": "Testera la connexion et la prise de contact avec le serveur de synchronisation. Si le serveur de synchronisation n'est pas initialisé, cela le configurera pour qu'il se synchronise avec le document local.",
"test_button": "Tester la synchronisation",
- "handshake_failed": "Échec de la négociation avec le serveur de synchronisation, erreur : {{message}}",
- "timeout_unit": "millisecondes"
+ "handshake_failed": "Échec de la négociation avec le serveur de synchronisation, erreur : {{message}}"
},
"api_log": {
"close": "Fermer"
diff --git a/apps/client/src/translations/ga/translation.json b/apps/client/src/translations/ga/translation.json
index 6322e27329..6854c3ff77 100644
--- a/apps/client/src/translations/ga/translation.json
+++ b/apps/client/src/translations/ga/translation.json
@@ -119,7 +119,6 @@
"also_delete_note": "Scrios an nóta freisin"
},
"delete_notes": {
- "delete_notes_preview": "Réamhamharc ar scriosadh nótaí",
"close": "Dún",
"delete_all_clones_description": "Scrios gach clón freisin (is féidir é seo a chealú in athruithe le déanaí)",
"erase_notes_description": "Ní mharcálann scriosadh gnáth (bog) ach na nótaí mar scriosta agus is féidir iad a dhíscriosadh (sa dialóg athruithe le déanaí) laistigh de thréimhse ama. Scriosfar na nótaí láithreach má sheiceálann tú an rogha seo agus ní bheidh sé indéanta na nótaí a dhíscriosadh.",
@@ -127,9 +126,7 @@
"notes_to_be_deleted": "Scriosfar na nótaí seo a leanas ({{notesCount}})",
"no_note_to_delete": "Ní scriosfar aon nóta (clóin amháin).",
"broken_relations_to_be_deleted": "Brisfear agus scriosfar na caidrimh seo a leanas ({{ relationCount}})",
- "cancel": "Cealaigh",
- "ok": "Ceart go leor",
- "deleted_relation_text": "Tá tagairt don nóta {{- note}} (le scriosadh) le gaol {{- relation}} a thagann ó {{- source}}."
+ "cancel": "Cealaigh"
},
"export": {
"export_note_title": "Nóta easpórtála",
@@ -1483,7 +1480,6 @@
"config_title": "Cumraíocht Sioncrónaithe",
"server_address": "Seoladh sampla an fhreastalaí",
"timeout": "Am scoir sioncrónaithe",
- "timeout_unit": "milleasoicindí",
"proxy_label": "Sioncrónaigh freastalaí seachfhreastalaí (roghnach)",
"note": "Nóta",
"note_description": "Má fhágann tú an socrú seachfhreastalaí bán, úsáidfear seachfhreastalaí an chórais (baineann sé le tógáil deisce/leictreon amháin).",
diff --git a/apps/client/src/translations/hi/translation.json b/apps/client/src/translations/hi/translation.json
index deb3456638..a233ce587f 100644
--- a/apps/client/src/translations/hi/translation.json
+++ b/apps/client/src/translations/hi/translation.json
@@ -94,7 +94,6 @@
"if_you_dont_check": "अगर आप इसे चेक नहीं करते हैं, तो नोट केवल रिलेशन मैप से हटाया जाएगा।"
},
"delete_notes": {
- "delete_notes_preview": "नोट्स प्रिव्यू डिलीट करें",
"close": "बंद करें",
"delete_all_clones_description": "सभी क्लोन भी डिलीट करें (हाल के बदलावों में वापस ला सकते हैं)",
"erase_notes_description": "सामान्य (सॉफ्ट) डिलीट करने पर नोट केवल 'डिलीटेड' मार्क होते हैं और उन्हें एक निश्चित समय के भीतर (हाल के बदलावों वाले डायलॉग में) वापस लाया जा सकता है। इस विकल्प को चुनने पर नोट तुरंत पूरी तरह मिटा दिए जाएंगे और उन्हें वापस लाना संभव नहीं होगा।",
@@ -102,9 +101,7 @@
"notes_to_be_deleted": "निम्नलिखित नोट डिलीट कर दिए जाएंगे ({{notesCount}})",
"no_note_to_delete": "कोई भी नोट डिलीट नहीं होगा (केवल क्लोन हटाए जाएंगे)।",
"broken_relations_to_be_deleted": "निम्नलिखित रिलेशन टूट जाएंगे और डिलीट हो जाएंगे ({{relationCount}})",
- "cancel": "रद्द करें",
- "ok": "ठीक है",
- "deleted_relation_text": "नोट {{- note}} (जिसे डिलीट किया जाना है) का संदर्भ {{- source}} से शुरू होने वाले रिलेशन {{- relation}} में दिया गया है।"
+ "cancel": "रद्द करें"
},
"branch_prefix": {
"edit_branch_prefix": "ब्रांच प्रीफ़िक्स एडिट करें",
@@ -1467,7 +1464,6 @@
"config_title": "सिंक कॉन्फ़िगरेशन",
"server_address": "सर्वर एड्रेस (Address)",
"timeout": "सिंक समय-सीमा (Timeout)",
- "timeout_unit": "मिलीसेकंड (milliseconds)",
"proxy_label": "सिंक प्रॉक्सी सर्वर (वैकल्पिक)",
"note": "नोट",
"note_description": "अगर आप प्रॉक्सी खाली छोड़ते हैं, तो सिस्टम प्रॉक्सी का इस्तेमाल होगा।",
diff --git a/apps/client/src/translations/id/translation.json b/apps/client/src/translations/id/translation.json
index 68c60e7259..ad5cf53609 100644
--- a/apps/client/src/translations/id/translation.json
+++ b/apps/client/src/translations/id/translation.json
@@ -76,7 +76,6 @@
"confirmation": "Konfirmasi"
},
"delete_notes": {
- "delete_notes_preview": "Hapus pratinjau catatan",
"close": "Tutup",
"delete_all_clones_description": "Hapus seluruh duplikat (bisa dikembalikan di menu revisi)",
"erase_notes_description": "Penghapusan normal hanya menandai catatan sebagai dihapus dan dapat dipulihkan (melalui dialog versi revisi) dalam jangka waktu tertentu. Mencentang opsi ini akan menghapus catatan secara permanen seketika dan catatan tidak akan bisa dipulihkan kembali.",
@@ -84,9 +83,7 @@
"notes_to_be_deleted": "Catatan-catatan berikut akan dihapuskan ({{notesCount}})",
"no_note_to_delete": "Tidak ada Catatan yang akan dihapus (hanya duplikat).",
"broken_relations_to_be_deleted": "Hubungan berikut akan diputus dan dihapus ({{ relationCount}})",
- "cancel": "Batalkan",
- "ok": "Setuju",
- "deleted_relation_text": "Catatan {{- note}} (yang akan dihapus) dirujuk oleh relasi {{- relation}} yang berasal dari {{- source}}."
+ "cancel": "Batalkan"
},
"clone_to": {
"clone_notes_to": "Duplikat catatan ke…",
diff --git a/apps/client/src/translations/it/translation.json b/apps/client/src/translations/it/translation.json
index ac3b423556..10a73ac589 100644
--- a/apps/client/src/translations/it/translation.json
+++ b/apps/client/src/translations/it/translation.json
@@ -88,17 +88,14 @@
"also_delete_note": "Rimuove anche la nota"
},
"delete_notes": {
- "ok": "OK",
"close": "Chiudi",
- "delete_notes_preview": "Anteprima di eliminazione delle note",
"delete_all_clones_description": "Elimina anche tutti i cloni (può essere ripristinato nella sezione cambiamenti recenti)",
"erase_notes_description": "L'eliminazione normale (soft) marca le note come eliminate e potranno essere recuperate entro un certo lasso di tempo (dalla finestra dei cambiamenti recenti). Selezionando questa opzione le note si elimineranno immediatamente e non sarà possibile recuperarle.",
"erase_notes_warning": "Elimina le note in modo permanente (non potrà essere disfatto), compresi tutti i cloni. Ciò forzerà un nuovo caricamento dell'applicazione.",
"cancel": "Annulla",
"notes_to_be_deleted": "Le seguenti note saranno eliminate ({{notesCount}})",
"no_note_to_delete": "Nessuna nota sarà eliminata (solo i cloni).",
- "broken_relations_to_be_deleted": "Le seguenti relazioni saranno interrotte ed eliminate ({{relationCount}})",
- "deleted_relation_text": "La nota {{- note}} (da eliminare) è referenziata dalla relazione {{- relation}} originata da {{- source}}."
+ "broken_relations_to_be_deleted": "Le seguenti relazioni saranno interrotte ed eliminate ({{relationCount}})"
},
"info": {
"okButton": "OK",
@@ -497,7 +494,6 @@
"proxy_label": "Server Proxy per la sincronizzazione (opzionale)",
"test_title": "Test di sincronizzazione",
"timeout": "Timeout per la sincronizzazione",
- "timeout_unit": "millisecondi",
"save": "Salva",
"help": "Aiuto",
"server_address": "Indirizzo dell'istanza del server",
diff --git a/apps/client/src/translations/ja/translation.json b/apps/client/src/translations/ja/translation.json
index 33d3643f20..e808ec0118 100644
--- a/apps/client/src/translations/ja/translation.json
+++ b/apps/client/src/translations/ja/translation.json
@@ -111,11 +111,8 @@
"notes_to_be_deleted": "以下のノートが削除されます ({{notesCount}})",
"no_note_to_delete": "ノートは削除されません(クローンのみ)。",
"cancel": "キャンセル",
- "ok": "OK",
"close": "閉じる",
- "delete_notes_preview": "ノートのプレビューを削除",
- "broken_relations_to_be_deleted": "次のリレーション ({{relationCount}})は壊れているので消去されます",
- "deleted_relation_text": "削除予定のノート{{- note}}は{{- source}}からリレーション{{- relation}}によって参照されています."
+ "broken_relations_to_be_deleted": "次のリレーション ({{relationCount}})は壊れているので消去されます"
},
"calendar": {
"mon": "月",
@@ -576,7 +573,10 @@
"expand_first_level": "直下の子を展開",
"expand_nth_level": "{{depth}} 階層下まで展開",
"expand_all_levels": "すべての階層を展開",
- "hide_child_notes": "ツリー内の子ノートを非表示"
+ "hide_child_notes": "ツリー内の子ノートを非表示",
+ "open_all_in_tabs": "すべて開く",
+ "open_all_in_tabs_tooltip": "すべての結果を新しいタブで開く",
+ "open_all_confirm": "{{count}} 件のノートが新しいタブで開かれます。続行しますか?"
},
"note_types": {
"geo-map": "ジオマップ",
@@ -1001,7 +1001,8 @@
"date-and-time": "日時",
"path": "パス",
"database_backed_up_to": "データベースは{{backupFilePath}}にバックアップされました",
- "no_backup_yet": "バックアップがありません"
+ "no_backup_yet": "バックアップがありません",
+ "download": "ダウンロード"
},
"password": {
"wiki": "wiki",
@@ -1041,7 +1042,6 @@
"config_title": "同期設定",
"server_address": "サーバーインスタンスのアドレス",
"timeout": "同期タイムアウト",
- "timeout_unit": "ミリ秒",
"proxy_label": "同期プロキシサーバー(任意)",
"note": "注",
"note_description": "プロキシ設定を空白のままにすると、システムプロキシが使用されます(デスクトップ/electronビルドにのみ適用されます)。",
@@ -1051,7 +1051,8 @@
"test_title": "同期のテスト",
"test_description": "これは同期サーバとの接続とハンドシェイクをテストします。同期サーバーが初期化されていない場合、ローカルドキュメントと同期するように設定します。",
"test_button": "同期試行",
- "handshake_failed": "同期サーバーのハンドシェイクに失敗しました。エラー: {{message}}"
+ "handshake_failed": "同期サーバーのハンドシェイクに失敗しました。エラー: {{message}}",
+ "timeout_description": "同期接続が遅い場合に、接続を諦めるまでの待機時間。ネットワークが不安定な場合は、この時間を長く設定してください。"
},
"api_log": {
"close": "閉じる"
@@ -1542,7 +1543,8 @@
"collapse": "通常サイズに折りたたむ",
"title": "ノートマップ",
"link-distance": "リンク距離",
- "fix-nodes": "ノードを修正"
+ "fix-nodes": "ノードを修正",
+ "too-many-notes": "このサブツリーには {{count}} 件のノートが含まれており、ノートマップに表示できる {{max}} の上限を超えています。"
},
"owned_attribute_list": {
"owned_attributes": "所有属性"
diff --git a/apps/client/src/translations/ko/translation.json b/apps/client/src/translations/ko/translation.json
index b0991a87a7..dab39aeb85 100644
--- a/apps/client/src/translations/ko/translation.json
+++ b/apps/client/src/translations/ko/translation.json
@@ -100,9 +100,6 @@
"no_note_to_delete": "삭제되는 노트가 없습니다 (클론만 삭제됩니다).",
"broken_relations_to_be_deleted": "다음 관계가 끊어지고 삭제됩니다({{ relationCount}})",
"cancel": "취소",
- "ok": "OK",
- "deleted_relation_text": "삭제 예정인 노트 {{- note}} (은)는 {{- source}}에서 시작된 관계 {{- relation}}에 의해 참조되고 있습니다.",
- "delete_notes_preview": "노트 미리보기 삭제",
"close": "닫기",
"delete_all_clones_description": "모든 복제본 삭제(최근 변경 사항에서 되돌릴 수 있습니다)"
},
diff --git a/apps/client/src/translations/nb-NO/translation.json b/apps/client/src/translations/nb-NO/translation.json
index ee36c293fb..9db2e0a1c0 100644
--- a/apps/client/src/translations/nb-NO/translation.json
+++ b/apps/client/src/translations/nb-NO/translation.json
@@ -39,8 +39,7 @@
},
"delete_notes": {
"close": "Lukk",
- "cancel": "Avbryt",
- "ok": "OK"
+ "cancel": "Avbryt"
},
"export": {
"close": "Lukk",
diff --git a/apps/client/src/translations/pl/translation.json b/apps/client/src/translations/pl/translation.json
index 2cf8aa62f4..a83b7ae69b 100644
--- a/apps/client/src/translations/pl/translation.json
+++ b/apps/client/src/translations/pl/translation.json
@@ -78,15 +78,12 @@
"delete_notes": {
"cancel": "Anuluj",
"close": "Zamknij",
- "delete_notes_preview": "Podgląd usuwania notatek",
"delete_all_clones_description": "Usuń również wszystkie klony (można cofnąć w oknie Ostatnie zmiany)",
"erase_notes_description": "Normalne (miękkie) usuwanie jedynie oznacza notatki jako usunięte i można je przywrócić (w oknie Ostatnie zmiany) przez pewien czas. Zaznaczenie tej opcji spowoduje natychmiastowe wymazanie notatek i nie będzie możliwe ich przywrócenie.",
"erase_notes_warning": "Wymaż notatki trwale (nie można cofnąć), w tym wszystkie klony. Wymusi to przeładowanie aplikacji.",
"notes_to_be_deleted": "Następujące notatki zostaną usunięte ({{notesCount}})",
"no_note_to_delete": "Żadna notatka nie zostanie usunięta (tylko klony).",
- "broken_relations_to_be_deleted": "Następujące relacje zostaną zerwane i usunięte ({{ relationCount}})",
- "ok": "OK",
- "deleted_relation_text": "Notatka {{- note}} (do usunięcia) jest powiązana relacją {{- relation}} pochodzącą z {{- source}}."
+ "broken_relations_to_be_deleted": "Następujące relacje zostaną zerwane i usunięte ({{ relationCount}})"
},
"export": {
"close": "Zamknij",
@@ -1671,7 +1668,6 @@
"config_title": "Konfiguracja synchronizacji",
"server_address": "Adres instancji serwera",
"timeout": "Limit czasu synchronizacji",
- "timeout_unit": "milisekund",
"proxy_label": "Serwer proxy synchronizacji (opcjonalnie)",
"note": "Uwaga",
"note_description": "Jeśli pozostawisz ustawienie proxy puste, zostanie użyte proxy systemowe (dotyczy tylko wersji desktop/electron).",
diff --git a/apps/client/src/translations/pt/translation.json b/apps/client/src/translations/pt/translation.json
index 095e38c257..1219523ce8 100644
--- a/apps/client/src/translations/pt/translation.json
+++ b/apps/client/src/translations/pt/translation.json
@@ -88,7 +88,6 @@
"also_delete_note": "Também apagar a nota"
},
"delete_notes": {
- "delete_notes_preview": "Apagar pré-visualização de notas",
"close": "Fechar",
"delete_all_clones_description": "Apagar também todos os clones (pode ser desfeito em alterações recentes)",
"erase_notes_description": "Apagar normal (suave) apenas marca as notas como apagadas, permitindo que sejam recuperadas (no diálogo de alterações recentes) num período. Se esta opção for marcada, as notas serão apagadas imediatamente e não será possível restaurá-las.",
@@ -96,9 +95,7 @@
"notes_to_be_deleted": "As seguintes notas serão apagadas ({{notesCount}})",
"no_note_to_delete": "Nenhuma nota será apagada (apenas os clones).",
"broken_relations_to_be_deleted": "As seguintes relações serão quebradas e apagadas ({{ relationCount}})",
- "cancel": "Cancelar",
- "ok": "OK",
- "deleted_relation_text": "A nota {{- note}} (a ser apagada) está referenciada pela relação {{- relation}} originada de {{- source}}."
+ "cancel": "Cancelar"
},
"export": {
"export_note_title": "Exportar nota",
@@ -1441,7 +1438,6 @@
"config_title": "Configuração da Sincronização",
"server_address": "Endereço da instância do Servidor",
"timeout": "Tempo limite da sincronização",
- "timeout_unit": "milisegundos",
"proxy_label": "Servidor proxy para sincronização (opcional)",
"note": "Nota",
"note_description": "Se deixar a configuração de proxy em branco, o proxy do sistema será usado (aplica-se apenas à versão desktop/Electron).",
diff --git a/apps/client/src/translations/pt_br/translation.json b/apps/client/src/translations/pt_br/translation.json
index bd7183f2f7..fbb7f29d81 100644
--- a/apps/client/src/translations/pt_br/translation.json
+++ b/apps/client/src/translations/pt_br/translation.json
@@ -94,7 +94,6 @@
"also_delete_note": "Também excluir a nota"
},
"delete_notes": {
- "delete_notes_preview": "Excluir pré-visualização de notas",
"close": "Fechar",
"delete_all_clones_description": "Excluir também todos os clones (pode ser desfeito em alterações recentes)",
"erase_notes_description": "A exclusão normal (suave) apenas marca as notas como excluídas, permitindo que sejam recuperadas (no diálogo de alterações recentes) dentro de um período de tempo. Se esta opção for marcada, as notas serão apagadas imediatamente e não será possível restaurá-las.",
@@ -102,9 +101,7 @@
"notes_to_be_deleted": "As seguintes notas serão excluídas ({{notesCount}})",
"no_note_to_delete": "Nenhuma nota será excluída (apenas os clones).",
"broken_relations_to_be_deleted": "As seguintes relações serão quebradas e excluídas ({{ relationCount}})",
- "cancel": "Cancelar",
- "ok": "OK",
- "deleted_relation_text": "A nota {{- note}} (a ser excluída) está referenciada pela relação {{- relation}} originada de {{- source}}."
+ "cancel": "Cancelar"
},
"export": {
"export_note_title": "Exportar nota",
@@ -1950,7 +1947,6 @@
"config_title": "Configuração da Sincronização",
"server_address": "Endereço da instância do Servidor",
"timeout": "Tempo limite da sincronização",
- "timeout_unit": "milisegundos",
"proxy_label": "Servidor proxy para sincronização (opcional)",
"note": "Nota",
"note_description": "Se você deixar a configuração de proxy em branco, o proxy do sistema será usado (aplica-se apenas à versão desktop/Electron).",
diff --git a/apps/client/src/translations/ro/translation.json b/apps/client/src/translations/ro/translation.json
index 77d5606c9f..5a2a13f63f 100644
--- a/apps/client/src/translations/ro/translation.json
+++ b/apps/client/src/translations/ro/translation.json
@@ -459,13 +459,10 @@
"broken_relations_to_be_deleted": "Următoarele relații vor fi întrerupte și șterse ({{ relationCount}})",
"cancel": "Anulează",
"delete_all_clones_description": "Șterge și toate clonele (se pot recupera în ecranul Schimbări recente)",
- "delete_notes_preview": "Previzualizare ștergerea notițelor",
"erase_notes_description": "Ștergerea obișnuită doar marchează notițele ca fiind șterse și pot fi recuperate (în ecranul Schimbări recente) pentru o perioadă de timp. Dacă se bifează această opțiune, notițele vor fi șterse imediat fără posibilitatea de a le recupera.",
"erase_notes_warning": "Șterge notițele permanent (nu se mai pot recupera), incluzând toate clonele. Va forța reîncărcarea aplicației.",
"no_note_to_delete": "Nicio notiță nu va fi ștearsă (doar clonele).",
"notes_to_be_deleted": "Următoarele notițe vor fi șterse ({{notesCount}})",
- "ok": "OK",
- "deleted_relation_text": "Notița {{- note}} ce va fi ștearsă este referențiată de relația {{- relation}}, originând din {{- source}}.",
"close": "Închide"
},
"delete_relation": {
@@ -1266,8 +1263,7 @@
"test_button": "Probează sincronizarea",
"test_description": "Această opțiune va testa conexiunea și comunicarea cu serverul de sincronizare. Dacă serverul de sincronizare nu este inițializat, acest lucru va rula și o sincronizare cu documentul local.",
"test_title": "Probează sincronizarea",
- "timeout": "Timp limită de sincronizare",
- "timeout_unit": "milisecunde"
+ "timeout": "Timp limită de sincronizare"
},
"table_of_contents": {
"description": "Cuprinsul va apărea în notițele de tip text atunci când notița are un număr de titluri mai mare decât cel definit. Acest număr se poate personaliza:",
diff --git a/apps/client/src/translations/ru/translation.json b/apps/client/src/translations/ru/translation.json
index 780e5cfcef..093b5b718b 100644
--- a/apps/client/src/translations/ru/translation.json
+++ b/apps/client/src/translations/ru/translation.json
@@ -83,10 +83,7 @@
"notes_to_be_deleted": "Следующие заметки будут удалены ({{notesCount}})",
"no_note_to_delete": "Заметка не будет удалена (только клоны).",
"broken_relations_to_be_deleted": "Следующие отношения будут разорваны и удалены ({{relationCount}})",
- "cancel": "Отмена",
- "ok": "ОК",
- "deleted_relation_text": "Примечание {{- note}} (подлежит удалению) ссылается на отношение {{- relation}}, происходящее из {{- source}}.",
- "delete_notes_preview": "Предпросмотр удаляемых заметок"
+ "cancel": "Отмена"
},
"database_anonymization": {
"light_anonymization_description": "Это действие создаст новую копию базы данных и выполнит её лёгкую анонимизацию — в частности, будет удалён только контент всех заметок, но заголовки и атрибуты останутся. Кроме того, будут сохранены пользовательские заметки, содержащие JavaScript-скрипты frontend/backend и пользовательские виджеты. Это даёт больше контекста для отладки проблем.",
@@ -1419,7 +1416,6 @@
"no_results": "Не найдено ярлыков, соответствующих '{{filter}}'"
},
"sync_2": {
- "timeout_unit": "миллисекунд",
"note": "Заметка",
"save": "Сохранить",
"help": "Помощь",
diff --git a/apps/client/src/translations/sr/translation.json b/apps/client/src/translations/sr/translation.json
index d585852e2f..cf3f0d8681 100644
--- a/apps/client/src/translations/sr/translation.json
+++ b/apps/client/src/translations/sr/translation.json
@@ -76,7 +76,6 @@
"also_delete_note": "Takođe obriši belešku"
},
"delete_notes": {
- "delete_notes_preview": "Obriši pregled beleške",
"close": "Zatvori",
"delete_all_clones_description": "Obriši i sve klonove (može biti poništeno u skorašnjim izmenama)",
"erase_notes_description": "Normalno (blago) brisanje samo označava beleške kao obrisane i one mogu biti vraćene (u dijalogu skorašnjih izmena) u određenom vremenskom periodu. Biranje ove opcije će momentalno obrisati beleške i ove beleške neće biti moguće vratiti.",
@@ -84,9 +83,7 @@
"notes_to_be_deleted": "Sledeće beleške će biti obrisane ({{- noteCount}})",
"no_note_to_delete": "Nijedna beleška neće biti obrisana (samo klonovi).",
"broken_relations_to_be_deleted": "Sledeći odnosi će biti prekinuti i obrisani ({{- relationCount}})",
- "cancel": "Otkaži",
- "ok": "U redu",
- "deleted_relation_text": "Beleška {{- note}} (za brisanje) je referencirana sa odnosom {{- relation}} koji potiče iz {{- source}}."
+ "cancel": "Otkaži"
},
"export": {
"export_note_title": "Izvezi belešku",
diff --git a/apps/client/src/translations/tr/translation.json b/apps/client/src/translations/tr/translation.json
index 4e658efe10..1c0198d3c0 100644
--- a/apps/client/src/translations/tr/translation.json
+++ b/apps/client/src/translations/tr/translation.json
@@ -21,16 +21,13 @@
},
"delete_notes": {
"close": "Kapat",
- "delete_notes_preview": "Not önizlemesini sil",
"delete_all_clones_description": "Tüm klonları da sil (son değişikliklerden geri alınabilir)",
"erase_notes_description": "Normal (yazılımsal) silme işlemi, notları yalnızca silinmiş olarak işaretler ve belirli bir süre içinde (son değişiklikler iletişim kutusunda) geri alınabilir. Bu seçeneği işaretlemek, notları hemen siler ve notların geri alınması mümkün olmaz.",
"erase_notes_warning": "Notları, tüm kopyaları da dahil olmak üzere kalıcı olarak silin (geri alınamaz). Bu işlem, uygulamanın yeniden yüklenmesine neden olacaktır.",
"notes_to_be_deleted": "Aşağıdaki notlar silinecektir. ({{notesCount}})",
"no_note_to_delete": "Hiçbir not silinmeyecek (sadece kopyaları silinecek).",
"broken_relations_to_be_deleted": "Aşağıdaki ilişkiler koparılacak ve silinecektir ({{ relationCount}})",
- "cancel": "İptal",
- "ok": "Tamam",
- "deleted_relation_text": "{{- note}} (silinecek) notu, {{- source}} kaynağından kaynaklanan {{- relation}} ilişkisi tarafından referans alınmaktadır."
+ "cancel": "İptal"
},
"export": {
"close": "Kapat",
diff --git a/apps/client/src/translations/tw/translation.json b/apps/client/src/translations/tw/translation.json
index 33076b3332..a8af023d71 100644
--- a/apps/client/src/translations/tw/translation.json
+++ b/apps/client/src/translations/tw/translation.json
@@ -88,7 +88,6 @@
"also_delete_note": "同時刪除筆記"
},
"delete_notes": {
- "delete_notes_preview": "刪除筆記預覽",
"delete_all_clones_description": "同時刪除所有克隆(可以在最近修改中撤消)",
"erase_notes_description": "通常(軟)刪除僅標記筆記為已刪除,可以在一段時間內透過最近修改對話方塊撤消。勾選此選項將立即擦除筆記,無法撤銷。",
"erase_notes_warning": "永久擦除筆記(無法撤銷),包括所有克隆。這將強制應用程式重新載入。",
@@ -96,8 +95,6 @@
"no_note_to_delete": "沒有筆記將被刪除(僅克隆)。",
"broken_relations_to_be_deleted": "將刪除以下關聯並斷開連接 ({{ relationCount}})",
"cancel": "取消",
- "ok": "確定",
- "deleted_relation_text": "筆記 {{- note}}(將被刪除的筆記)被以下關聯 {{- relation}} 引用,來自 {{- source}}。",
"close": "關閉"
},
"export": {
@@ -803,7 +800,10 @@
"expand_first_level": "展開直接子級",
"expand_nth_level": "展開 {{depth}} 層",
"expand_all_levels": "展開所有層級",
- "hide_child_notes": "隱藏樹中的子筆記"
+ "hide_child_notes": "隱藏樹中的子筆記",
+ "open_all_in_tabs": "全部打開",
+ "open_all_in_tabs_tooltip": "在新分頁中開啟所有結果",
+ "open_all_confirm": "這將在新分頁中開啟 {{count}} 則筆記。要繼續嗎?"
},
"edited_notes": {
"no_edited_notes_found": "今天還沒有編輯過的筆記...",
@@ -857,7 +857,8 @@
"collapse": "收摺到正常大小",
"title": "筆記地圖",
"fix-nodes": "固定節點",
- "link-distance": "連結距離"
+ "link-distance": "連結距離",
+ "too-many-notes": "此子樹包含 {{count}} 則筆記,已超過筆記地圖中可顯示的 {{max}} 則上限。"
},
"note_paths": {
"title": "筆記路徑",
@@ -1062,7 +1063,8 @@
"note_already_in_diagram": "筆記 \"{{title}}\" 已經在圖中。",
"enter_title_of_new_note": "輸入新筆記的標題",
"default_new_note_title": "新筆記",
- "click_on_canvas_to_place_new_note": "點擊畫布以放置新筆記"
+ "click_on_canvas_to_place_new_note": "點擊畫布以放置新筆記",
+ "rename_relation": "重新命名關聯"
},
"backend_log": {
"refresh": "重新整理"
@@ -1331,7 +1333,8 @@
"date-and-time": "日期和時間",
"path": "路徑",
"database_backed_up_to": "資料庫已備份至 {{backupFilePath}}",
- "no_backup_yet": "尚無備份"
+ "no_backup_yet": "尚無備份",
+ "download": "下載"
},
"etapi": {
"title": "ETAPI",
@@ -1396,9 +1399,15 @@
"spellcheck": {
"title": "拼寫檢查",
"description": "這些選項僅適用於桌面版,瀏覽器將使用其原生的拼寫檢查功能。",
- "enable": "啟用拼寫檢查",
- "language_code_label": "語言代碼",
- "restart-required": "拼寫檢查選項的更改將在應用重啟後生效。"
+ "enable": "拼寫檢查",
+ "language_code_label": "拼寫檢查語言",
+ "restart-required": "拼寫檢查選項的更改將在應用重啟後生效。",
+ "custom_dictionary_title": "自訂字典",
+ "custom_dictionary_description": "新增至字典的詞彙會同步至您所有的裝置。",
+ "custom_dictionary_edit": "自訂詞彙",
+ "custom_dictionary_edit_description": "編輯拼寫檢查器不應標記的詞彙清單。變更將於重新啟動後生效。",
+ "custom_dictionary_open": "編輯字典",
+ "related_description": "設定拼寫檢查語言及自訂字典。"
},
"sync_2": {
"config_title": "同步設定",
@@ -1414,7 +1423,7 @@
"test_description": "測試和同步伺服器之間的連接。如果同步伺服器沒有初始化,這會將本地文件同步至同步伺服器上。",
"test_button": "測試同步",
"handshake_failed": "同步伺服器握手失敗,錯誤:{{message}}",
- "timeout_unit": "毫秒"
+ "timeout_description": "在放棄慢速同步連線前應等待多久。若網路不穩定,請延長等待時間。"
},
"api_log": {
"close": "關閉"
@@ -2285,7 +2294,7 @@
"ocr": {
"processing_complete": "OCR 處理已完成。",
"processing_failed": "無法啟動 OCR 處理",
- "text_filtered_low_confidence": "OCR 偵測到的信賴度為 {{confidence}}%,但因您的最低閾值設定為 {{threshold}}%,故該結果已被捨棄。",
+ "text_filtered_low_confidence": "OCR 偵測到的文字信賴度為 {{confidence}}%,但因您的最低閾值設定為 {{threshold}}%,故該結果已被捨棄。",
"open_media_settings": "開啟設定",
"view_extracted_text": "檢視擷取的文字 (OCR)",
"extracted_text": "已擷取的文字 (OCR)",
diff --git a/apps/client/src/translations/uk/translation.json b/apps/client/src/translations/uk/translation.json
index 252100847a..d1d851e2fd 100644
--- a/apps/client/src/translations/uk/translation.json
+++ b/apps/client/src/translations/uk/translation.json
@@ -186,7 +186,6 @@
"also_delete_note": "Також видалити нотатку"
},
"delete_notes": {
- "delete_notes_preview": "Видалити попередній перегляд нотаток",
"close": "Закрити",
"delete_all_clones_description": "Видалити також усі клони (можна скасувати в останніх змінах)",
"erase_notes_description": "Звичайне (м’яке) видалення лише позначає нотатки як видалені і їх можна відновити (у діалоговому вікні останніх змін) протягом певного періоду часу. Якщо позначити цю опцію, нотатки будуть видалені негайно і їх неможливо буде відновити.",
@@ -194,9 +193,7 @@
"notes_to_be_deleted": "Наступні нотатки будуть видалені ({{notesCount}})",
"no_note_to_delete": "Жодну нотатку не буде видалено (лише клони).",
"broken_relations_to_be_deleted": "Наступні зв'язки будуть розірвані та видалені ({{ relationCount}})",
- "cancel": "Скасувати",
- "ok": "ОК",
- "deleted_relation_text": "Нотатка {{- note}} (буде видалена) посилається на зв'язок {{- relation}}, що походить з {{- source}}."
+ "cancel": "Скасувати"
},
"export": {
"export_note_title": "Експорт нотатки",
@@ -1750,7 +1747,6 @@
"config_title": "Конфігурація синхронізації",
"server_address": "Адреса екземпляра сервера",
"timeout": "Тайм-аут синхронізації",
- "timeout_unit": "мілісекунди",
"proxy_label": "Синхронізація проксі-сервера (необов'язково)",
"note": "Нотатка",
"note_description": "Якщо залишити налаштування проксі-сервера порожнім, буде використано системний проксі-сервер (стосується лише збірки для ПК/електронної версії).",
diff --git a/apps/client/src/translations/vi/translation.json b/apps/client/src/translations/vi/translation.json
index 022262c9f1..76b4418204 100644
--- a/apps/client/src/translations/vi/translation.json
+++ b/apps/client/src/translations/vi/translation.json
@@ -27,7 +27,6 @@
},
"delete_notes": {
"close": "Đóng",
- "ok": "OK",
"cancel": "Huỷ"
},
"export": {
diff --git a/apps/client/src/widgets/attribute_widgets/UserAttributesList.tsx b/apps/client/src/widgets/attribute_widgets/UserAttributesList.tsx
index a95887b7af..82f5380aad 100644
--- a/apps/client/src/widgets/attribute_widgets/UserAttributesList.tsx
+++ b/apps/client/src/widgets/attribute_widgets/UserAttributesList.tsx
@@ -89,7 +89,7 @@ function buildUserAttribute(attr: AttributeWithDefinitions): ComponentChildren {
content = <> {" "}{attr.friendlyName} >;
break;
case "url":
- content = {attr.friendlyName} ;
+ content = e.stopPropagation()}>{attr.friendlyName} ;
break;
case "color":
style = { backgroundColor: value, color: getReadableTextColor(value) };
diff --git a/apps/client/src/widgets/collections/NoteList.tsx b/apps/client/src/widgets/collections/NoteList.tsx
index 0c37c4a08a..038d90a052 100644
--- a/apps/client/src/widgets/collections/NoteList.tsx
+++ b/apps/client/src/widgets/collections/NoteList.tsx
@@ -180,11 +180,13 @@ export function useNoteIds(note: FNote | null | undefined, viewType: ViewTypeOpt
// Refresh on alterations to the note subtree.
useTriliumEvent("entitiesReloaded", ({ loadResults }) => {
- if (note && loadResults.getBranchRows().some(branch =>
- branch.parentNoteId === note.noteId
- || noteIds.includes(branch.parentNoteId ?? ""))
+ if (note && (
+ loadResults.getNoteReorderings().includes(note.noteId)
+ || loadResults.getBranchRows().some(branch =>
+ branch.parentNoteId === note.noteId
+ || noteIds.includes(branch.parentNoteId ?? ""))
|| loadResults.getAttributeRows().some(attr => attr.name === "archived" && attr.noteId && noteIds.includes(attr.noteId))
- ) {
+ )) {
refreshNoteIds();
}
});
diff --git a/apps/client/src/widgets/collections/board/data.spec.ts b/apps/client/src/widgets/collections/board/data.spec.ts
index 9f7bb01ed3..d5f05ce2d7 100644
--- a/apps/client/src/widgets/collections/board/data.spec.ts
+++ b/apps/client/src/widgets/collections/board/data.spec.ts
@@ -27,7 +27,7 @@ describe("Board data", () => {
froca.branches["note1_note2"] = branch;
froca.getNoteFromCache("note1")!.addChild("note2", "note1_note2", false);
const data = await getBoardData(parentNote, "status", {}, false);
- const noteIds = Array.from(data.byColumn.values()).flat().map(item => item.note.noteId);
+ const noteIds = [...data.byColumn.values()].flat().map(item => item.note.noteId);
expect(noteIds.length).toBe(3);
});
});
diff --git a/apps/client/src/widgets/collections/calendar/event_builder.ts b/apps/client/src/widgets/collections/calendar/event_builder.ts
index dec64feee8..fd0ce3bbb2 100644
--- a/apps/client/src/widgets/collections/calendar/event_builder.ts
+++ b/apps/client/src/widgets/collections/calendar/event_builder.ts
@@ -75,7 +75,7 @@ export async function buildEventsForCalendar(note: FNote, e: EventSourceFuncArg)
if (dateNote.hasChildren()) {
- const childNoteIds = await dateNote.getSubtreeNoteIds();
+ const childNoteIds = dateNote.getChildNoteIds();
for (const childNoteId of childNoteIds) {
childNoteToDateMapping[childNoteId] = startDate;
}
diff --git a/apps/client/src/widgets/collections/calendar/index.tsx b/apps/client/src/widgets/collections/calendar/index.tsx
index 4bde4b6350..4594d64564 100644
--- a/apps/client/src/widgets/collections/calendar/index.tsx
+++ b/apps/client/src/widgets/collections/calendar/index.tsx
@@ -144,7 +144,12 @@ export default function CalendarView({ note, noteIds }: ViewModeProps {
+ // Only process actual date/time changes, not other property changes (e.g., title via setProp).
+ const datesChanged = e.oldEvent.start?.getTime() !== e.event.start?.getTime()
+ || e.oldEvent.end?.getTime() !== e.event.end?.getTime()
+ || e.oldEvent.allDay !== e.event.allDay;
+ if (!datesChanged) return;
+
const { startDate, endDate } = parseStartEndDateFromEvent(e.event);
if (!startDate) return;
diff --git a/apps/client/src/widgets/collections/table/row_editing.ts b/apps/client/src/widgets/collections/table/row_editing.ts
index c4df69e7ae..03f6b8ff49 100644
--- a/apps/client/src/widgets/collections/table/row_editing.ts
+++ b/apps/client/src/widgets/collections/table/row_editing.ts
@@ -51,6 +51,8 @@ export default function useRowTableEditing(api: RefObject, attributeD
if (type === "labels") {
if (typeof newValue === "boolean") {
newValue = newValue ? "true" : "false";
+ } else if (typeof newValue === "number") {
+ newValue = String(newValue);
}
setLabel(noteId, name, newValue);
} else if (type === "relations") {
diff --git a/apps/client/src/widgets/dialogs/delete_notes.css b/apps/client/src/widgets/dialogs/delete_notes.css
new file mode 100644
index 0000000000..864fcc2e0c
--- /dev/null
+++ b/apps/client/src/widgets/dialogs/delete_notes.css
@@ -0,0 +1,30 @@
+.delete-notes-dialog .tn-card {
+ margin-bottom: 16px;
+}
+
+.delete-notes-dialog .tn-card:last-child {
+ margin-bottom: 0;
+}
+
+.delete-notes-dialog .preview-list {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+ max-height: 200px;
+ overflow: auto;
+}
+
+.delete-notes-dialog .preview-list li {
+ padding: 6px 16px;
+ border-bottom: 1px solid var(--main-border-color);
+}
+
+.delete-notes-dialog .preview-list li:last-child {
+ border-bottom: none;
+}
+
+.delete-notes-dialog .preview-list small {
+ margin-inline-start: 8px;
+ font-size: 0.8em;
+ color: var(--muted-text-color);
+}
diff --git a/apps/client/src/widgets/dialogs/delete_notes.tsx b/apps/client/src/widgets/dialogs/delete_notes.tsx
index c58d440b72..2a5cb0c0b5 100644
--- a/apps/client/src/widgets/dialogs/delete_notes.tsx
+++ b/apps/client/src/widgets/dialogs/delete_notes.tsx
@@ -1,15 +1,22 @@
-import { useRef, useState, useEffect } from "preact/hooks";
-import { t } from "../../services/i18n.js";
-import FormCheckbox from "../react/FormCheckbox.js";
-import Modal from "../react/Modal.js";
+import "./delete_notes.css";
+
import type { DeleteNotesPreview } from "@triliumnext/commons";
-import server from "../../services/server.js";
+import { useEffect, useRef, useState } from "preact/hooks";
+
import froca from "../../services/froca.js";
-import FNote from "../../entities/fnote.js";
-import link from "../../services/link.js";
+import { t } from "../../services/i18n.js";
+import server from "../../services/server.js";
import Button from "../react/Button.jsx";
-import Alert from "../react/Alert.jsx";
+import { Card, CardSection } from "../react/Card.js";
+import FormToggle from "../react/FormToggle.js";
import { useTriliumEvent } from "../react/hooks.jsx";
+import Modal from "../react/Modal.js";
+import NoteLink from "../react/NoteLink.js";
+import OptionsRow from "../type_widgets/options/components/OptionsRow.js";
+
+interface CloneInfo {
+ totalCloneCount: number;
+}
export interface ResolveOptions {
proceed: boolean;
@@ -24,9 +31,9 @@ interface ShowDeleteNotesDialogOpts {
}
interface BrokenRelationData {
- note: string;
- relation: string;
- source: string;
+ noteId: string;
+ relationName: string;
+ sourceNoteId: string;
}
export default function DeleteNotesDialog() {
@@ -34,20 +41,51 @@ export default function DeleteNotesDialog() {
const [ deleteAllClones, setDeleteAllClones ] = useState(false);
const [ eraseNotes, setEraseNotes ] = useState(!!opts.forceDeleteAllClones);
const [ brokenRelations, setBrokenRelations ] = useState([]);
- const [ noteIdsToBeDeleted, setNoteIdsToBeDeleted ] = useState([]);
+ const [ noteIdsToBeDeleted, setNoteIdsToBeDeleted ] = useState([]);
const [ shown, setShown ] = useState(false);
+ const [ cloneInfo, setCloneInfo ] = useState({ totalCloneCount: 0 });
const okButtonRef = useRef(null);
useTriliumEvent("showDeleteNotesDialog", (opts) => {
setOpts(opts);
+ setDeleteAllClones(false);
+ setEraseNotes(!!opts.forceDeleteAllClones);
setShown(true);
- })
+ });
+
+ // Calculate clone information when branches change
+ useEffect(() => {
+ const { branchIdsToDelete } = opts;
+ if (!branchIdsToDelete || branchIdsToDelete.length === 0) {
+ setCloneInfo({ totalCloneCount: 0 });
+ return;
+ }
+
+ async function calculateCloneInfo() {
+ const branches = froca.getBranches(branchIdsToDelete!, true);
+ const uniqueNoteIds = [...new Set(branches.map(b => b.noteId))];
+ const notes = await froca.getNotes(uniqueNoteIds);
+
+ let totalCloneCount = 0;
+
+ for (const note of notes) {
+ const parentBranches = note.getParentBranches();
+ // Clones are additional parent branches beyond the one being deleted
+ const otherBranches = parentBranches.filter(b => !branchIdsToDelete!.includes(b.branchId));
+ totalCloneCount += otherBranches.length;
+ }
+
+ setCloneInfo({ totalCloneCount });
+ }
+
+ calculateCloneInfo();
+ }, [opts.branchIdsToDelete]);
useEffect(() => {
const { branchIdsToDelete, forceDeleteAllClones } = opts;
if (!branchIdsToDelete || branchIdsToDelete.length === 0) {
return;
- }
+ }
server.post("delete-notes-preview", {
branchIdsToDelete,
@@ -63,16 +101,16 @@ export default function DeleteNotesDialog() {
className="delete-notes-dialog"
size="xl"
scrollable
- title={t("delete_notes.delete_notes_preview")}
+ title={t("delete_notes.title")}
onShown={() => okButtonRef.current?.focus()}
onHidden={() => {
- opts.callback?.({ proceed: false })
+ opts.callback?.({ proceed: false });
setShown(false);
}}
footer={<>
setShown(false)} />
- {
opts.callback?.({ proceed: true, deleteAllClones, eraseNotes });
@@ -81,92 +119,117 @@ export default function DeleteNotesDialog() {
>}
show={shown}
>
-
-
+
+
+
+
+
+
+
+
-
+
);
}
-function DeletedNotes({ noteIdsToBeDeleted }: { noteIdsToBeDeleted: DeleteNotesPreview["noteIdsToBeDeleted"] }) {
- const [ noteLinks, setNoteLinks ] = useState([]);
+interface DeleteAllClonesOptionProps {
+ cloneInfo: CloneInfo;
+ deleteAllClones: boolean;
+ setDeleteAllClones: (value: boolean) => void;
+}
- useEffect(() => {
- froca.getNotes(noteIdsToBeDeleted).then(async (notes: FNote[]) => {
- const noteLinks: string[] = [];
+function DeleteAllClonesOption({ cloneInfo, deleteAllClones, setDeleteAllClones }: DeleteAllClonesOptionProps) {
+ const { totalCloneCount } = cloneInfo;
- for (const note of notes) {
- noteLinks.push((await link.createLink(note.noteId, { showNotePath: true })).html());
- }
-
- setNoteLinks(noteLinks);
- });
- }, [noteIdsToBeDeleted]);
-
- if (noteIdsToBeDeleted.length) {
- return (
-
-
{t("delete_notes.notes_to_be_deleted", { notesCount: noteIdsToBeDeleted.length })}
-
-
- {noteLinks.map((link, index) => (
-
- ))}
-
-
- );
- } else {
- return (
-
- {t("delete_notes.no_note_to_delete")}
-
- )
+ if (totalCloneCount === 0) {
+ return null;
}
+
+ return (
+
+
+
+ );
+}
+
+function DeletedNotes({ noteIdsToBeDeleted }: { noteIdsToBeDeleted: DeleteNotesPreview["noteIdsToBeDeleted"] }) {
+ return (
+
+ 0}>
+ {noteIdsToBeDeleted.length ? (
+
+ {noteIdsToBeDeleted.map((noteId) => (
+
+
+
+ ))}
+
+ ) : (
+ {t("delete_notes.no_note_to_delete")}
+ )}
+
+
+ );
}
function BrokenRelations({ brokenRelations }: { brokenRelations: DeleteNotesPreview["brokenRelations"] }) {
- const [ notesWithBrokenRelations, setNotesWithBrokenRelations ] = useState([]);
-
- useEffect(() => {
- const noteIds = brokenRelations
- .map(relation => relation.noteId)
- .filter(noteId => noteId) as string[];
- froca.getNotes(noteIds).then(async () => {
- const notesWithBrokenRelations: BrokenRelationData[] = [];
- for (const attr of brokenRelations) {
- notesWithBrokenRelations.push({
- note: (await link.createLink(attr.value)).html(),
- relation: `${attr.name}`,
- source: (await link.createLink(attr.noteId)).html()
- });
- }
- setNotesWithBrokenRelations(notesWithBrokenRelations);
- });
- }, [brokenRelations]);
-
- if (brokenRelations.length) {
- return (
-
-
- {brokenRelations.map((_, index) => {
- return (
-
- ) }} />
-
- );
- })}
-
-
- );
- } else {
- return <>>;
+ if (!brokenRelations.length) {
+ return null;
}
+
+ const relationsData: BrokenRelationData[] = brokenRelations
+ .filter((attr) => attr.value && attr.noteId)
+ .map((attr) => ({
+ noteId: attr.value!,
+ relationName: attr.name,
+ sourceNoteId: attr.noteId!
+ }));
+
+ return (
+
+
+
+
+
+
+ {t("delete_notes.table_note_with_relation")}
+ {t("delete_notes.table_relation")}
+ {t("delete_notes.table_points_to")}
+
+
+
+ {relationsData.map((relation, index) => (
+
+
+ {relation.relationName}
+
+
+ ))}
+
+
+
+
+
+ );
}
diff --git a/apps/client/src/widgets/dialogs/include_note.tsx b/apps/client/src/widgets/dialogs/include_note.tsx
index aabd64bab7..74d41da6be 100644
--- a/apps/client/src/widgets/dialogs/include_note.tsx
+++ b/apps/client/src/widgets/dialogs/include_note.tsx
@@ -8,7 +8,7 @@ import Button from "../react/Button";
import { Suggestion, triggerRecentNotes } from "../../services/note_autocomplete";
import tree from "../../services/tree";
import froca from "../../services/froca";
-import { useTriliumEvent } from "../react/hooks";
+import { useTriliumEvent, useTriliumOption } from "../react/hooks";
import { type BoxSize, CKEditorApi } from "../type_widgets/text/CKEditorWithWatchdog";
export interface IncludeNoteOpts {
@@ -18,11 +18,13 @@ export interface IncludeNoteOpts {
export default function IncludeNoteDialog() {
const editorApiRef = useRef(null);
const [suggestion, setSuggestion] = useState(null);
- const [boxSize, setBoxSize] = useState("medium");
+ const [defaultBoxSize, setDefaultBoxSize] = useTriliumOption("includeNoteDefaultBoxSize");
+ const [boxSize, setBoxSize] = useState(defaultBoxSize);
const [shown, setShown] = useState(false);
useTriliumEvent("showIncludeNoteDialog", ({ editorApi }) => {
editorApiRef.current = editorApi;
+ setBoxSize(defaultBoxSize); // Reset to default when opening dialog
setShown(true);
});
@@ -35,10 +37,14 @@ export default function IncludeNoteDialog() {
size="lg"
onShown={() => triggerRecentNotes(autoCompleteRef.current)}
onHidden={() => setShown(false)}
- onSubmit={() => {
+ onSubmit={async () => {
if (!suggestion?.notePath || !editorApiRef.current) return;
setShown(false);
- includeNote(suggestion.notePath, editorApiRef.current, boxSize as BoxSize);
+ await includeNote(suggestion.notePath, editorApiRef.current, boxSize as BoxSize);
+ // Save the selected box size as the new default
+ if (boxSize !== defaultBoxSize) {
+ setDefaultBoxSize(boxSize);
+ }
}}
footer={ }
show={shown}
@@ -63,6 +69,7 @@ export default function IncludeNoteDialog() {
{ label: t("include_note.box_size_small"), value: "small" },
{ label: t("include_note.box_size_medium"), value: "medium" },
{ label: t("include_note.box_size_full"), value: "full" },
+ { label: t("include_note.box_size_expandable"), value: "expandable" },
]}
/>
diff --git a/apps/client/src/widgets/dialogs/jump_to_note.tsx b/apps/client/src/widgets/dialogs/jump_to_note.tsx
index 89c4388039..44c825e082 100644
--- a/apps/client/src/widgets/dialogs/jump_to_note.tsx
+++ b/apps/client/src/widgets/dialogs/jump_to_note.tsx
@@ -80,9 +80,19 @@ export default function JumpToNoteDialogComponent() {
break;
}
- $autoComplete
- .trigger("focus")
- .trigger("select");
+ $autoComplete.trigger("focus");
+
+ if (mode === "commands") {
+ // In command mode, place caret at end instead of selecting all text
+ // This preserves the ">" prefix when the user starts typing
+ const input = autocompleteRef.current;
+ if (input) {
+ const len = input.value.length;
+ input.setSelectionRange(len, len);
+ }
+ } else {
+ $autoComplete.trigger("select");
+ }
// Add keyboard shortcut for full search
shortcutService.bindElShortcut($autoComplete, "ctrl+return", () => {
diff --git a/apps/client/src/widgets/highlights_list.ts b/apps/client/src/widgets/highlights_list.ts
index b6e3f2e6f0..512e8eff30 100644
--- a/apps/client/src/widgets/highlights_list.ts
+++ b/apps/client/src/widgets/highlights_list.ts
@@ -9,7 +9,6 @@ import appContext, { type EventData } from "../components/app_context.js";
import type FNote from "../entities/fnote.js";
import attributeService from "../services/attributes.js";
import { t } from "../services/i18n.js";
-import katex from "../services/math.js";
import options from "../services/options.js";
import OnClickButtonWidget from "./buttons/onclick_button.js";
import RightPanelWidget from "./right_panel_widget.js";
@@ -125,77 +124,6 @@ export default class HighlightsListWidget extends RightPanelWidget {
this.triggerCommand("reEvaluateRightPaneVisibility");
}
- extractOuterTag(htmlStr: string | null) {
- if (htmlStr === null) {
- return null;
- }
- // Regular expressions that match only the outermost tag
- const regex = /^<([a-zA-Z]+)([^>]*)>/;
- const match = htmlStr.match(regex);
- if (match) {
- const tagName = match[1].toLowerCase(); // Extract tag name
- const attributes = match[2].trim(); // Extract label attributes
- return { tagName, attributes };
- }
- return null;
- }
-
- areOuterTagsConsistent(str1: string | null, str2: string | null) {
- const tag1 = this.extractOuterTag(str1);
- const tag2 = this.extractOuterTag(str2);
- // If one of them has no label, returns false
- if (!tag1 || !tag2) {
- return false;
- }
- // Compare tag names and attributes to see if they are the same
- return tag1.tagName === tag2.tagName && tag1.attributes === tag2.attributes;
- }
-
- /**
- * Rendering formulas in strings using katex
- *
- * @param html Note's html content
- * @returns The HTML content with mathematical formulas rendered by KaTeX.
- */
- async replaceMathTextWithKatax(html: string) {
- const mathTextRegex = /\\\(([\s\S]*?)\\\)<\/span>/g;
- const matches = [...html.matchAll(mathTextRegex)];
- let modifiedText = html;
-
- if (matches.length > 0) {
- // Process all matches asynchronously
- for (const match of matches) {
- const latexCode = match[1];
- let rendered;
-
- try {
- rendered = katex.renderToString(latexCode, {
- throwOnError: false
- });
- } catch (e) {
- if (e instanceof ReferenceError && e.message.includes("katex is not defined")) {
- // Load KaTeX if it is not already loaded
- try {
- rendered = katex.renderToString(latexCode, {
- throwOnError: false
- });
- } catch (renderError) {
- console.error("KaTeX rendering error after loading library:", renderError);
- rendered = match[0]; // Fall back to original if error persists
- }
- } else {
- console.error("KaTeX rendering error:", e);
- rendered = match[0]; // Fall back to original on error
- }
- }
-
- // Replace the matched formula in the modified text
- modifiedText = modifiedText.replace(match[0], rendered);
- }
- }
- return modifiedText;
- }
-
async getHighlightList(content: string, optionsHighlightsList: string[]) {
// matches a span containing background-color
const regex1 = /]*style\s*=\s*[^>]*background-color:[^>]*?>[\s\S]*?<\/span>/gi;
@@ -239,9 +167,6 @@ export default class HighlightsListWidget extends RightPanelWidget {
const $highlightsList = $("");
let prevEndIndex = -1,
hlLiCount = 0;
- let prevSubHtml: string | null = null;
- // Used to determine if a string is only a formula
- const onlyMathRegex = /^\\\([^\)]*?\)<\/span>(?:\\\([^\)]*?\)<\/span>)*$/;
for (let match: RegExpMatchArray | null = null, hltIndex = 0; (match = combinedRegex.exec(content)) !== null; hltIndex++) {
const subHtml = match[0];
@@ -257,25 +182,14 @@ export default class HighlightsListWidget extends RightPanelWidget {
// If the previous element is connected to this element in HTML, then concatenate them into one.
$highlightsList.children().last().append(subHtml);
} else {
- // TODO: can't be done with $(subHtml).text()?
- //Can’t remember why regular expressions are used here, but modified to $(subHtml).text() works as expected
- //const hasText = [...subHtml.matchAll(/(?<=^|>)[^><]+?(?=<|$)/g)].map(matchTmp => matchTmp[0]).join('').trim();
const hasText = $(subHtml).text().trim();
if (hasText) {
- const substring = content.substring(prevEndIndex, startIndex);
- //If the two elements have the same style and there are only formulas in between, append the formulas and the current element to the end of the previous element.
- if (this.areOuterTagsConsistent(prevSubHtml, subHtml) && onlyMathRegex.test(substring)) {
- const $lastLi = $highlightsList.children("li").last();
- $lastLi.append(await this.replaceMathTextWithKatax(substring));
- $lastLi.append(subHtml);
- } else {
- $highlightsList.append(
- $("")
- .html(subHtml)
- .on("click", () => this.jumpToHighlightsList(findSubStr, hltIndex))
- );
- }
+ $highlightsList.append(
+ $(" ")
+ .html(subHtml)
+ .on("click", () => this.jumpToHighlightsList(findSubStr, hltIndex))
+ );
hlLiCount++;
} else {
@@ -284,7 +198,6 @@ export default class HighlightsListWidget extends RightPanelWidget {
}
}
prevEndIndex = endIndex;
- prevSubHtml = subHtml;
}
return {
$highlightsList,
diff --git a/apps/client/src/widgets/note_bars/CollectionProperties.tsx b/apps/client/src/widgets/note_bars/CollectionProperties.tsx
index 66bfb32c45..14f8685eaa 100644
--- a/apps/client/src/widgets/note_bars/CollectionProperties.tsx
+++ b/apps/client/src/widgets/note_bars/CollectionProperties.tsx
@@ -2,10 +2,13 @@ import "./CollectionProperties.css";
import { t } from "i18next";
import { ComponentChildren } from "preact";
-import { useRef } from "preact/hooks";
+import { useRef, useState } from "preact/hooks";
import FNote from "../../entities/fnote";
+import appContext from "../../components/app_context";
+import dialogService from "../../services/dialog";
import { ViewTypeOptions } from "../collections/interface";
+import ActionButton from "../react/ActionButton";
import Dropdown from "../react/Dropdown";
import { FormDropdownDivider, FormListItem } from "../react/FormList";
import { useNoteProperty, useTriliumEvent } from "../react/hooks";
@@ -24,6 +27,8 @@ export const ICON_MAPPINGS: Record = {
presentation: "bx bx-rectangle"
};
+const MAX_OPEN_TABS = 50;
+
export default function CollectionProperties({ note, centerChildren, rightChildren }: {
note: FNote;
centerChildren?: ComponentChildren;
@@ -31,6 +36,7 @@ export default function CollectionProperties({ note, centerChildren, rightChildr
}) {
const [ viewType, setViewType ] = useViewType(note);
const noteType = useNoteProperty(note, "type");
+ const [ isOpening, setIsOpening ] = useState(false);
return ([ "book", "search" ].includes(noteType ?? "") &&
@@ -43,11 +49,59 @@ export default function CollectionProperties({ note, centerChildren, rightChildr
{rightChildren}
+ {noteType === "search" && (
+
+ )}
);
}
+function OpenAllButton({ note, isOpening, setIsOpening }: {
+ note: FNote;
+ isOpening: boolean;
+ setIsOpening: (value: boolean) => void;
+}) {
+ const noteIds = note.getChildNoteIds();
+ const count = noteIds.length;
+
+ const handleOpenAll = async () => {
+ if (count === 0) return;
+
+ if (count > MAX_OPEN_TABS) {
+ await dialogService.info(t("book_properties.open_all_too_many", { count, max: MAX_OPEN_TABS }));
+ return;
+ }
+
+ if (count > 10) {
+ const confirmed = await dialogService.confirm(t("book_properties.open_all_confirm", { count }));
+ if (!confirmed) return;
+ }
+
+ setIsOpening(true);
+ try {
+ for (let i = 0; i < noteIds.length; i++) {
+ const noteId = noteIds[i];
+ const isLast = i === noteIds.length - 1;
+ await appContext.tabManager.openTabWithNoteWithHoisting(noteId, {
+ activate: isLast
+ });
+ }
+ } finally {
+ setIsOpening(false);
+ }
+ };
+
+ return (
+
+ );
+}
+
function ViewTypeSwitcher({ viewType, setViewType }: { viewType: ViewTypeOptions, setViewType: (newValue: ViewTypeOptions) => void }) {
// Keyboard shortcut
const dropdownContainerRef = useRef(null);
diff --git a/apps/client/src/widgets/note_icon.tsx b/apps/client/src/widgets/note_icon.tsx
index 31ca7e65b4..c6ed7e618b 100644
--- a/apps/client/src/widgets/note_icon.tsx
+++ b/apps/client/src/widgets/note_icon.tsx
@@ -42,8 +42,11 @@ export default function NoteIcon() {
setIcon(note?.getIcon());
}, [ note, iconClass, workspaceIconClass ]);
+ const isDisabled = viewScope?.viewMode !== "default"
+ || note?.isMetadataReadOnly;
+
if (isMobile()) {
- return ;
+ return ;
}
return (
@@ -55,16 +58,17 @@ export default function NoteIcon() {
dropdownOptions={{ autoClose: "outside" }}
buttonClassName={`note-icon tn-focusable-button ${icon ?? "bx bx-empty"}`}
hideToggleArrow
- disabled={viewScope?.viewMode !== "default"}
+ disabled={isDisabled}
>
{ note && dropdownRef?.current?.hide()} columnCount={12} /> }
);
}
-function MobileNoteIconSwitcher({ note, icon }: {
+function MobileNoteIconSwitcher({ note, icon, disabled }: {
note: FNote | null | undefined;
icon: string | null | undefined;
+ disabled?: boolean;
}) {
const [ modalShown, setModalShown ] = useState(false);
const { windowWidth } = useWindowSize();
@@ -76,6 +80,7 @@ function MobileNoteIconSwitcher({ note, icon }: {
icon={icon ?? "bx bx-empty"}
text={t("note_icon.change_note_icon")}
onClick={() => setModalShown(true)}
+ disabled={disabled}
/>
{createPortal((
diff --git a/apps/client/src/widgets/note_map/NoteMap.css b/apps/client/src/widgets/note_map/NoteMap.css
index fa49bb39c6..3188f09439 100644
--- a/apps/client/src/widgets/note_map/NoteMap.css
+++ b/apps/client/src/widgets/note_map/NoteMap.css
@@ -1,5 +1,5 @@
.note-detail-note-map {
- height: 100%;
+ height: 100%;
overflow: hidden;
}
@@ -54,4 +54,4 @@
width: 10px;
}
-/* End of styling the slider */
\ No newline at end of file
+/* End of styling the slider */
diff --git a/apps/client/src/widgets/note_map/NoteMap.tsx b/apps/client/src/widgets/note_map/NoteMap.tsx
index 2677e4aa59..a165d467bb 100644
--- a/apps/client/src/widgets/note_map/NoteMap.tsx
+++ b/apps/client/src/widgets/note_map/NoteMap.tsx
@@ -12,11 +12,15 @@ import { t } from "../../services/i18n";
import { getEffectiveThemeStyle } from "../../services/theme";
import ActionButton from "../react/ActionButton";
import { useElementSize, useNoteLabel } from "../react/hooks";
+import NoItems from "../react/NoItems";
import Slider from "../react/Slider";
import { loadNotesAndRelations, NoteMapLinkObject, NoteMapNodeObject, NotesAndRelationsData } from "./data";
import { CssData, setupRendering } from "./rendering";
import { MapType, NoteMapWidgetMode, rgb2hex } from "./utils";
+/** Maximum number of notes to render in the note map before showing a warning. */
+const MAX_NOTES_THRESHOLD = 1_000;
+
interface NoteMapProps {
note: FNote;
widgetMode: NoteMapWidgetMode;
@@ -34,6 +38,7 @@ export default function NoteMap({ note, widgetMode, parentRef }: NoteMapProps) {
const containerSize = useElementSize(parentRef);
const [ fixNodes, setFixNodes ] = useState(false);
const [ linkDistance, setLinkDistance ] = useState(40);
+ const [ tooManyNotes, setTooManyNotes ] = useState(null);
const notesAndRelationsRef = useRef();
const mapRootId = useMemo(() => {
@@ -61,6 +66,14 @@ export default function NoteMap({ note, widgetMode, parentRef }: NoteMapProps) {
const includeRelations = labelValues("mapIncludeRelation");
loadNotesAndRelations(mapRootId, excludeRelations, includeRelations, mapType).then((notesAndRelations) => {
if (!containerRef.current || !styleResolverRef.current) return;
+
+ // Guard against rendering too many notes which would freeze the browser.
+ if (notesAndRelations.nodes.length > MAX_NOTES_THRESHOLD) {
+ setTooManyNotes(notesAndRelations.nodes.length);
+ return;
+ }
+ setTooManyNotes(null);
+
const cssData = getCssData(containerRef.current, styleResolverRef.current);
// Configure rendering properties.
@@ -119,6 +132,12 @@ export default function NoteMap({ note, widgetMode, parentRef }: NoteMapProps) {
});
}, [ fixNodes, mapType ]);
+ if (tooManyNotes) {
+ return (
+
+ );
+ }
+
return (
diff --git a/apps/client/src/widgets/note_title.tsx b/apps/client/src/widgets/note_title.tsx
index f886d9f7db..34b27c9298 100644
--- a/apps/client/src/widgets/note_title.tsx
+++ b/apps/client/src/widgets/note_title.tsx
@@ -1,15 +1,16 @@
-import { useEffect, useRef, useState } from "preact/hooks";
-import { t } from "../services/i18n";
-import FormTextBox from "./react/FormTextBox";
-import { useNoteContext, useNoteProperty, useSpacedUpdate, useTriliumEvent, useTriliumEvents } from "./react/hooks";
-import protected_session_holder from "../services/protected_session_holder";
-import server from "../services/server";
import "./note_title.css";
-import { isLaunchBarConfig } from "../services/utils";
+
+import clsx from "clsx";
+import { useEffect, useRef, useState } from "preact/hooks";
+
import appContext from "../components/app_context";
import branches from "../services/branches";
+import { t } from "../services/i18n";
+import protected_session_holder from "../services/protected_session_holder";
+import server from "../services/server";
import { isIMEComposing } from "../services/shortcuts";
-import clsx from "clsx";
+import FormTextBox from "./react/FormTextBox";
+import { useNoteContext, useNoteProperty, useSpacedUpdate, useTriliumEvent, useTriliumEvents } from "./react/hooks";
export default function NoteTitleWidget(props: {className?: string}) {
const { note, noteId, componentId, viewScope, noteContext, parentComponent } = useNoteContext();
@@ -25,8 +26,7 @@ export default function NoteTitleWidget(props: {className?: string}) {
const isReadOnly = note === null
|| note === undefined
|| (note.isProtected && !protected_session_holder.isProtectedSessionAvailable())
- || isLaunchBarConfig(note.noteId)
- || note.noteId.startsWith("_help_")
+ || note.isMetadataReadOnly
|| viewScope?.viewMode !== "default";
setReadOnly(isReadOnly);
}, [ note, note?.noteId, note?.isProtected, viewScope?.viewMode ]);
@@ -58,11 +58,29 @@ export default function NoteTitleWidget(props: {className?: string}) {
// Manage focus.
const textBoxRef = useRef
(null);
const isNewNote = useRef();
+ const pendingSelect = useRef(false);
+
+ // Re-apply selection when title changes if we have a pending select.
+ // This handles the case where the server sends back entity changes after we've
+ // already called select(), which causes the controlled input to re-render and lose selection.
+ useEffect(() => {
+ if (pendingSelect.current && textBoxRef.current && document.activeElement === textBoxRef.current) {
+ textBoxRef.current.select();
+ pendingSelect.current = false;
+ }
+ }, [title]);
+
useTriliumEvents([ "focusOnTitle", "focusAndSelectTitle" ], (e, eventName) => {
if (noteContext?.isActive() && textBoxRef.current) {
+ // In the new layout, there are two NoteTitleWidget instances. Only handle if visible.
+ if (!textBoxRef.current.checkVisibility({ checkOpacity: true })) {
+ return;
+ }
+
textBoxRef.current.focus();
if (eventName === "focusAndSelectTitle") {
textBoxRef.current.select();
+ pendingSelect.current = true;
}
isNewNote.current = ("isNewNote" in e ? e.isNewNote : false);
}
@@ -83,6 +101,9 @@ export default function NoteTitleWidget(props: {className?: string}) {
spacedUpdate.scheduleUpdate();
}}
onKeyDown={(e) => {
+ // User started typing, stop re-applying selection
+ pendingSelect.current = false;
+
// Skip processing if IME is composing to prevent interference
// with text input in CJK languages
if (isIMEComposing(e)) {
@@ -101,6 +122,7 @@ export default function NoteTitleWidget(props: {className?: string}) {
}
}}
onBlur={() => {
+ pendingSelect.current = false;
spacedUpdate.updateNowIfNecessary();
isNewNote.current = false;
}}
diff --git a/apps/client/src/widgets/react/Card.css b/apps/client/src/widgets/react/Card.css
index 0aecb56dbd..1e4075a7af 100644
--- a/apps/client/src/widgets/react/Card.css
+++ b/apps/client/src/widgets/react/Card.css
@@ -35,6 +35,14 @@
flex-direction: column;
gap: var(--card-section-gap);
+ .tn-card-section.tn-no-padding {
+ padding: 0;
+
+ & .table {
+ margin-bottom: 0;
+ }
+ }
+
.tn-card-section {
&:first-of-type {
border-top-left-radius: var(--card-border-radius);
diff --git a/apps/client/src/widgets/react/Card.tsx b/apps/client/src/widgets/react/Card.tsx
index 1abd259f0c..d16e1f83e4 100644
--- a/apps/client/src/widgets/react/Card.tsx
+++ b/apps/client/src/widgets/react/Card.tsx
@@ -50,6 +50,7 @@ export interface CardSectionProps {
subSectionsVisible?: boolean;
highlightOnHover?: boolean;
onAction?: () => void;
+ noPadding?: boolean;
}
interface CardSectionContextType {
@@ -65,7 +66,8 @@ export function CardSection(props: {children: ComponentChildren} & CardSectionPr
return <>
0,
- "tn-card-highlight-on-hover": props.highlightOnHover || props.onAction
+ "tn-card-highlight-on-hover": props.highlightOnHover || props.onAction,
+ "tn-no-padding": props.noPadding
})}
style={{"--tn-card-section-nesting-level": (nestingLevel) ? nestingLevel : null}}
onClick={props.onAction}>
diff --git a/apps/client/src/widgets/react/FormToggle.tsx b/apps/client/src/widgets/react/FormToggle.tsx
index e08c1e3c2e..ac29f1fb7a 100644
--- a/apps/client/src/widgets/react/FormToggle.tsx
+++ b/apps/client/src/widgets/react/FormToggle.tsx
@@ -7,17 +7,22 @@ import { ComponentChildren } from "preact";
interface FormToggleProps {
currentValue: boolean | null;
onChange(newValue: boolean): void;
- switchOnName: string;
+ /** Label shown when toggle is off. If omitted along with switchOffName, no label is shown. */
+ switchOnName?: string;
switchOnTooltip?: string;
- switchOffName: string;
+ /** Label shown when toggle is on. If omitted along with switchOnName, no label is shown. */
+ switchOffName?: string;
switchOffTooltip?: string;
helpPage?: string;
disabled?: boolean;
afterName?: ComponentChildren;
+ /** ID for the input element, useful for accessibility with external labels */
+ id?: string;
}
-export default function FormToggle({ currentValue, helpPage, switchOnName, switchOnTooltip, switchOffName, switchOffTooltip, onChange, disabled, afterName }: FormToggleProps) {
+export default function FormToggle({ currentValue, helpPage, switchOnName, switchOnTooltip, switchOffName, switchOffTooltip, onChange, disabled, afterName, id }: FormToggleProps) {
const [ disableTransition, setDisableTransition ] = useState(true);
+ const hasLabel = switchOnName || switchOffName;
useEffect(() => {
const timeout = setTimeout(() => {
@@ -28,7 +33,7 @@ export default function FormToggle({ currentValue, helpPage, switchOnName, switc
return (
-
{ currentValue ? switchOffName : switchOnName }
+ {hasLabel &&
{ currentValue ? switchOffName : switchOnName } }
{ afterName }
@@ -37,6 +42,7 @@ export default function FormToggle({ currentValue, helpPage, switchOnName, switc
title={currentValue ? switchOffTooltip : switchOnTooltip }
>
, config: Partial) {
useEffect(() => {
if (!elRef?.current) return;
- const $el = $(elRef.current);
- $el.tooltip("dispose");
+ const element = elRef.current;
+ const $el = $(element);
+
+ // Dispose any existing tooltip before creating a new one
+ Tooltip.getInstance(element)?.dispose();
$el.tooltip(config);
+
+ // Capture the tooltip instance now, since elRef.current may be null during cleanup.
+ const tooltip = Tooltip.getInstance(element);
+
+ return () => {
+ if (element.isConnected) {
+ tooltip?.dispose();
+ }
+ };
}, [ elRef, config ]);
const showTooltip = useCallback(() => {
@@ -866,8 +897,14 @@ export function useStaticTooltip(elRef: RefObject, config?: Partial {
+ // Capture element now, since elRef.current may be null during cleanup.
+ const element = elRef.current;
+
+ // Dispose any existing tooltip before creating a new one
+ Tooltip.getInstance(element)?.dispose();
+
+ const tooltip = new Tooltip(element, config);
+ element.addEventListener("show.bs.tooltip", () => {
// Hide all the other tooltips.
for (const otherTooltip of tooltips) {
if (otherTooltip === tooltip) continue;
@@ -878,12 +915,11 @@ export function useStaticTooltip(elRef: RefObject, config?: Partial {
tooltips.delete(tooltip);
- tooltip.dispose();
- // workaround for https://github.com/twbs/bootstrap/issues/37474
- (tooltip as any)._activeTrigger = {};
- (tooltip as any)._element = document.createElement('noscript'); // placeholder with no behavior
+ if (element.isConnected) {
+ tooltip.dispose();
+ }
- // Remove *all* tooltip elements from the DOM
+ // Remove any lingering tooltip popup elements from the DOM.
document
.querySelectorAll('.tooltip')
.forEach(t => t.remove());
@@ -1400,3 +1436,38 @@ export function useColorScheme() {
return prefersDark ? "dark" : "light";
}
+
+/**
+ * Renders math equations within elements that have the `.math-tex` class.
+ * Used by sidebar widgets like Table of Contents and Highlights list to display math content.
+ *
+ * @param containerRef - Ref to the container element that may contain math elements
+ * @param deps - Dependencies that trigger re-rendering (e.g., text content)
+ */
+export function useMathRendering(containerRef: RefObject, deps: unknown[]) {
+ useEffect(() => {
+ if (!containerRef.current) return;
+ // Support both read-only (.math-tex) and CKEditor editing view (.ck-math-tex) classes
+ const mathElements = containerRef.current.querySelectorAll(".math-tex, .ck-math-tex");
+
+ for (const mathEl of mathElements) {
+ // Skip if already rendered by KaTeX
+ if (mathEl.querySelector(".katex")) continue;
+
+ try {
+ let equation = mathEl.textContent || "";
+
+ // CKEditor widgets store equation without delimiters, add them for KaTeX
+ if (mathEl.classList.contains("ck-math-tex")) {
+ // Check if it's display mode or inline
+ const isDisplay = mathEl.classList.contains("ck-math-tex-display");
+ equation = isDisplay ? `\\[${equation}\\]` : `\\(${equation}\\)`;
+ }
+
+ math.render(equation, mathEl as HTMLElement);
+ } catch (e) {
+ console.warn("Failed to render math:", e);
+ }
+ }
+ }, deps); // eslint-disable-line react-hooks/exhaustive-deps
+}
diff --git a/apps/client/src/widgets/sidebar/HighlightsList.spec.ts b/apps/client/src/widgets/sidebar/HighlightsList.spec.ts
new file mode 100644
index 0000000000..10ef0fae00
--- /dev/null
+++ b/apps/client/src/widgets/sidebar/HighlightsList.spec.ts
@@ -0,0 +1,52 @@
+import { describe, expect, it } from "vitest";
+import { extractHighlightsFromStaticHtml } from "./HighlightsList.js";
+
+describe("extractHighlightsFromStaticHtml", () => {
+ it("extracts a single highlight containing text and math equation together", () => {
+ const container = document.createElement("div");
+ container.innerHTML = `
+
+ Highlighted
+
+ \\(e=mc^2\\)
+
+ math
+
+
`;
+ document.body.appendChild(container);
+
+ const highlights = extractHighlightsFromStaticHtml(container);
+
+ // Should extract 1 combined highlight, not 3 separate ones
+ expect(highlights.length).toBe(1);
+
+ // The highlight should contain the full innerHTML of the styled span
+ const highlight = highlights[0];
+ expect(highlight.text).toContain("Highlighted");
+ expect(highlight.text).toContain("math-tex");
+ expect(highlight.text).toContain("e=mc^2");
+ expect(highlight.text).toContain("math");
+ expect(highlight.attrs.background).toBeTruthy();
+
+ document.body.removeChild(container);
+ });
+
+ it("extracts separate highlights for differently styled spans", () => {
+ const container = document.createElement("div");
+ container.innerHTML = `
+ Yellow text
+ normal text
+ Red text
+
`;
+ document.body.appendChild(container);
+
+ const highlights = extractHighlightsFromStaticHtml(container);
+
+ // Should extract 2 separate highlights (yellow and red)
+ expect(highlights.length).toBe(2);
+ expect(highlights[0].text).toBe("Yellow text");
+ expect(highlights[1].text).toBe("Red text");
+
+ document.body.removeChild(container);
+ });
+});
diff --git a/apps/client/src/widgets/sidebar/HighlightsList.tsx b/apps/client/src/widgets/sidebar/HighlightsList.tsx
index 401554203d..dc9a78c500 100644
--- a/apps/client/src/widgets/sidebar/HighlightsList.tsx
+++ b/apps/client/src/widgets/sidebar/HighlightsList.tsx
@@ -1,11 +1,12 @@
import { CKTextEditor, ModelText } from "@triliumnext/ckeditor5";
import { createPortal } from "preact/compat";
-import { useCallback, useEffect, useState } from "preact/hooks";
+import { useCallback, useEffect, useRef, useState } from "preact/hooks";
import { t } from "../../services/i18n";
import { randomString } from "../../services/utils";
-import { useActiveNoteContext, useContentElement, useIsNoteReadOnly, useNoteProperty, useTextEditor, useTriliumOptionJson } from "../react/hooks";
+import { useActiveNoteContext, useContentElement, useIsNoteReadOnly, useMathRendering, useNoteProperty, useTextEditor, useTriliumOptionJson } from "../react/hooks";
import Modal from "../react/Modal";
+import RawHtml from "../react/RawHtml";
import { HighlightsListOptions } from "../type_widgets/options/text_notes";
import RightPanelWidget from "./RightPanelWidget";
@@ -84,20 +85,11 @@ function AbstractHighlightsList({ highlights, scrollToHi
{filteredHighlights.length > 0 ? (
{filteredHighlights.map(highlight => (
- scrollToHighlight(highlight)}
- >
- {highlight.text}
-
+ />
))}
) : (
@@ -112,6 +104,31 @@ function AbstractHighlightsList({ highlights, scrollToHi
);
}
+function HighlightItem({ highlight, onClick }: {
+ highlight: T;
+ onClick(): void;
+}) {
+ const contentRef = useRef(null);
+
+ useMathRendering(contentRef, [highlight.text]);
+
+ return (
+
+
+
+ );
+}
+
//#region Editable text (CKEditor)
interface CKHighlight extends RawHighlight {
textNode: ModelText;
@@ -201,9 +218,24 @@ function extractHighlightsFromTextEditor(editor: CKTextEditor) {
};
if (Object.values(attrs).some(Boolean)) {
+ // Get HTML content from DOM (includes nested elements like math)
+ let html = item.data;
+ try {
+ const modelPos = editor.model.createPositionAt(item.textNode, "before");
+ const viewPos = editor.editing.mapper.toViewPosition(modelPos);
+ const domPos = editor.editing.view.domConverter.viewPositionToDom(viewPos);
+ if (domPos?.parent instanceof HTMLElement) {
+ // Get the formatting span's innerHTML (includes math elements)
+ html = domPos.parent.innerHTML;
+ }
+ } catch {
+ // During change:data events, the view may not be fully synchronized with the model.
+ // Fall back to using the raw text data.
+ }
+
result.push({
id: randomString(),
- text: item.data,
+ text: html,
attrs,
textNode: item.textNode,
offset: item.startOffset
@@ -235,47 +267,65 @@ function ReadOnlyTextHighlightsList() {
/>;
}
-function extractHighlightsFromStaticHtml(el: HTMLElement | null) {
+export function extractHighlightsFromStaticHtml(el: HTMLElement | null) {
if (!el) return [];
- const { color: defaultColor, backgroundColor: defaultBackgroundColor } = getComputedStyle(el);
-
- const walker = document.createTreeWalker(
- el,
- NodeFilter.SHOW_TEXT,
- null
- );
-
const highlights: DomHighlight[] = [];
+ const processedElements = new Set();
- let node: Node | null;
- while ((node = walker.nextNode())) {
- const el = node.parentElement;
- if (!el || !node.textContent?.trim()) continue;
+ // Find all elements with inline background-color or color styles
+ const styledElements = el.querySelectorAll('[style*="background-color"], [style*="color"]');
- const style = getComputedStyle(el);
+ for (const styledEl of styledElements) {
+ if (processedElements.has(styledEl)) continue;
+ if (!styledEl.textContent?.trim()) continue;
- if (
- el.closest('strong, em, u') ||
- style.color !== defaultColor ||
- style.backgroundColor !== defaultBackgroundColor
- ) {
- const attrs: RawHighlight["attrs"] = {
- bold: !!el.closest("strong"),
- italic: !!el.closest("em"),
- underline: !!el.closest("u"),
- background: el.style.backgroundColor,
- color: el.style.color
- };
+ const attrs: RawHighlight["attrs"] = {
+ bold: !!styledEl.closest("strong"),
+ italic: !!styledEl.closest("em"),
+ underline: !!styledEl.closest("u"),
+ background: styledEl.style.backgroundColor,
+ color: styledEl.style.color
+ };
- if (Object.values(attrs).some(Boolean)) {
- highlights.push({
- id: randomString(),
- text: node.textContent,
- element: el,
- attrs
- });
- }
+ if (Object.values(attrs).some(Boolean)) {
+ processedElements.add(styledEl);
+
+ highlights.push({
+ id: randomString(),
+ text: styledEl.innerHTML,
+ element: styledEl,
+ attrs
+ });
+ }
+ }
+
+ // Also find bold, italic, underline elements
+ const formattingElements = el.querySelectorAll("strong, em, u, b, i");
+
+ for (const formattedEl of formattingElements) {
+ // Skip if already processed or inside a processed element
+ if (processedElements.has(formattedEl)) continue;
+ if (Array.from(processedElements).some(processed => processed.contains(formattedEl))) continue;
+ if (!formattedEl.textContent?.trim()) continue;
+
+ const attrs: RawHighlight["attrs"] = {
+ bold: formattedEl.matches("strong, b"),
+ italic: formattedEl.matches("em, i"),
+ underline: formattedEl.matches("u"),
+ background: formattedEl.style.backgroundColor,
+ color: formattedEl.style.color
+ };
+
+ if (Object.values(attrs).some(Boolean)) {
+ processedElements.add(formattedEl);
+
+ highlights.push({
+ id: randomString(),
+ text: formattedEl.innerHTML,
+ element: formattedEl,
+ attrs
+ });
}
}
diff --git a/apps/client/src/widgets/sidebar/TableOfContents.tsx b/apps/client/src/widgets/sidebar/TableOfContents.tsx
index fdf616ee26..aca1c11c5b 100644
--- a/apps/client/src/widgets/sidebar/TableOfContents.tsx
+++ b/apps/client/src/widgets/sidebar/TableOfContents.tsx
@@ -5,9 +5,8 @@ import clsx from "clsx";
import { useCallback, useEffect, useRef, useState } from "preact/hooks";
import { t } from "../../services/i18n";
-import math from "../../services/math";
import { randomString } from "../../services/utils";
-import { useActiveNoteContext, useContentElement, useGetContextData, useIsNoteReadOnly, useNoteProperty, useTextEditor } from "../react/hooks";
+import { useActiveNoteContext, useContentElement, useGetContextData, useIsNoteReadOnly, useMathRendering, useNoteProperty, useTextEditor } from "../react/hooks";
import Icon from "../react/Icon";
import RawHtml from "../react/RawHtml";
import RightPanelWidget from "./RightPanelWidget";
@@ -84,19 +83,7 @@ function TableOfContentsHeading({ heading, scrollToHeading, activeHeadingId }: {
const isActive = heading.id === activeHeadingId;
const contentRef = useRef(null);
- // Render math equations after component mounts/updates
- useEffect(() => {
- if (!contentRef.current) return;
- const mathElements = contentRef.current.querySelectorAll(".ck-math-tex");
-
- for (const mathEl of mathElements ?? []) {
- try {
- math.render(mathEl.textContent || "", mathEl as HTMLElement);
- } catch (e) {
- console.warn("Failed to render math in TOC:", e);
- }
- }
- }, [heading.text]);
+ useMathRendering(contentRef, [heading.text]);
return (
<>
@@ -273,7 +260,7 @@ function extractTocFromStaticHtml(el: HTMLElement | null) {
headings.push({
id: randomString(),
level: parseInt(headingEl.tagName.substring(1), 10),
- text: headingEl.textContent,
+ text: headingEl.innerHTML,
element: headingEl
});
}
diff --git a/apps/client/src/widgets/type_widgets/llm_chat/ChatInputBar.css b/apps/client/src/widgets/type_widgets/llm_chat/ChatInputBar.css
index 4599e6a511..07adaacf3c 100644
--- a/apps/client/src/widgets/type_widgets/llm_chat/ChatInputBar.css
+++ b/apps/client/src/widgets/type_widgets/llm_chat/ChatInputBar.css
@@ -48,6 +48,10 @@
opacity: 0.4;
}
+.llm-chat-stop-btn {
+ color: var(--danger-color, #dc3545);
+}
+
/* Model selector */
.llm-chat-model-selector {
display: flex;
diff --git a/apps/client/src/widgets/type_widgets/llm_chat/ChatInputBar.tsx b/apps/client/src/widgets/type_widgets/llm_chat/ChatInputBar.tsx
index 6491a595b0..b4515d2bb4 100644
--- a/apps/client/src/widgets/type_widgets/llm_chat/ChatInputBar.tsx
+++ b/apps/client/src/widgets/type_widgets/llm_chat/ChatInputBar.tsx
@@ -228,11 +228,11 @@ export default function ChatInputBar({
)}
diff --git a/apps/client/src/widgets/type_widgets/llm_chat/useLlmChat.ts b/apps/client/src/widgets/type_widgets/llm_chat/useLlmChat.ts
index 63cbf4bbf4..f52fb6cc61 100644
--- a/apps/client/src/widgets/type_widgets/llm_chat/useLlmChat.ts
+++ b/apps/client/src/widgets/type_widgets/llm_chat/useLlmChat.ts
@@ -62,6 +62,8 @@ export interface UseLlmChatReturn {
clearMessages: () => void;
/** Refresh the provider/models list */
refreshModels: () => void;
+ /** Stop the current generation */
+ stopStreaming: () => void;
}
export function useLlmChat(
@@ -89,6 +91,7 @@ export function useLlmChat(
const [isCheckingProvider, setIsCheckingProvider] = useState
(true);
const messagesEndRef = useRef(null);
const textareaRef = useRef(null);
+ const abortControllerRef = useRef(null);
// Refs to get fresh values in getContent (avoids stale closures)
const messagesRef = useRef(messages);
@@ -251,6 +254,56 @@ export function useLlmChat(
streamOptions.enableExtendedThinking = enableExtendedThinking;
}
+ const abortController = new AbortController();
+ abortControllerRef.current = abortController;
+
+ /** Shared cleanup: finalize collected content and reset streaming state. */
+ function finalizeStream() {
+ // Mark any in-progress tool calls as stopped so they don't show infinite spinners
+ for (const [i, block] of contentBlocks.entries()) {
+ if (block.type === "tool_call" && !block.toolCall.result) {
+ contentBlocks[i] = {
+ type: "tool_call",
+ toolCall: { ...block.toolCall, result: "[Stopped]", isError: true }
+ };
+ }
+ }
+
+ const finalNewMessages: StoredMessage[] = [];
+
+ if (thinkingContent) {
+ finalNewMessages.push({
+ id: randomString(),
+ role: "assistant",
+ content: thinkingContent,
+ createdAt: new Date().toISOString(),
+ type: "thinking"
+ });
+ }
+
+ if (contentBlocks.length > 0) {
+ finalNewMessages.push({
+ id: randomString(),
+ role: "assistant",
+ content: contentBlocks,
+ createdAt: new Date().toISOString(),
+ citations: citations.length > 0 ? citations : undefined,
+ usage
+ });
+ }
+
+ if (finalNewMessages.length > 0) {
+ setMessages([...newMessages, ...finalNewMessages]);
+ }
+
+ setStreamingContent("");
+ setStreamingBlocks([]);
+ setStreamingThinking("");
+ setPendingCitations([]);
+ setIsStreaming(false);
+ abortControllerRef.current = null;
+ }
+
await streamChatCompletion(
apiMessages,
streamOptions,
@@ -320,42 +373,19 @@ export function useLlmChat(
setIsStreaming(false);
},
onDone: () => {
- const finalNewMessages: StoredMessage[] = [];
-
- if (thinkingContent) {
- finalNewMessages.push({
- id: randomString(),
- role: "assistant",
- content: thinkingContent,
- createdAt: new Date().toISOString(),
- type: "thinking"
- });
- }
-
- if (contentBlocks.length > 0) {
- finalNewMessages.push({
- id: randomString(),
- role: "assistant",
- content: contentBlocks,
- createdAt: new Date().toISOString(),
- citations: citations.length > 0 ? citations : undefined,
- usage
- });
- }
-
- if (finalNewMessages.length > 0) {
- const allMessages = [...newMessages, ...finalNewMessages];
- setMessages(allMessages);
- }
-
- setStreamingContent("");
- setStreamingBlocks([]);
- setStreamingThinking("");
- setPendingCitations([]);
- setIsStreaming(false);
+ finalizeStream();
}
+ },
+ abortController.signal
+ ).catch((e) => {
+ // AbortError is expected when user stops generation
+ if (e instanceof DOMException && e.name === "AbortError") {
+ finalizeStream();
+ } else {
+ // Re-throw other errors so they are not swallowed
+ throw e;
}
- );
+ });
}, [input, isStreaming, messages, selectedModel, enableWebSearch, enableNoteTools, enableExtendedThinking, contextNoteId, supportsExtendedThinking, setMessages]);
const handleKeyDown = useCallback((e: KeyboardEvent) => {
@@ -365,6 +395,13 @@ export function useLlmChat(
}
}, [handleSubmit]);
+ /** Stop the current generation by aborting the SSE connection. */
+ const stopStreaming = useCallback(() => {
+ if (abortControllerRef.current) {
+ abortControllerRef.current.abort();
+ }
+ }, []);
+
return {
// State
messages,
@@ -402,6 +439,7 @@ export function useLlmChat(
loadFromContent,
getContent,
clearMessages,
- refreshModels
+ refreshModels,
+ stopStreaming
};
}
diff --git a/apps/client/src/widgets/type_widgets/options/appearance.tsx b/apps/client/src/widgets/type_widgets/options/appearance.tsx
index 94fc1f1fbd..dc4a3bdc26 100644
--- a/apps/client/src/widgets/type_widgets/options/appearance.tsx
+++ b/apps/client/src/widgets/type_widgets/options/appearance.tsx
@@ -3,6 +3,7 @@ import "./appearance.css";
import { FontFamily, OptionNames } from "@triliumnext/commons";
import { useEffect, useState } from "preact/hooks";
+import zoomService from "../../../components/zoom";
import { t } from "../../../services/i18n";
import server from "../../../services/server";
import { isElectron, isMobile, reloadFrontendApp, restartDesktopApp } from "../../../services/utils";
@@ -14,9 +15,10 @@ import FormGroup from "../../react/FormGroup";
import FormRadioGroup from "../../react/FormRadioGroup";
import FormSelect, { FormSelectWithGroups } from "../../react/FormSelect";
import FormText from "../../react/FormText";
-import FormTextBox, { FormTextBoxWithUnit } from "../../react/FormTextBox";
+import { FormTextBoxWithUnit } from "../../react/FormTextBox";
import { useTriliumOption, useTriliumOptionBool } from "../../react/hooks";
import Icon from "../../react/Icon";
+import OptionsRow from "./components/OptionsRow";
import OptionsSection from "./components/OptionsSection";
import PlatformIndicator from "./components/PlatformIndicator";
import RadioWithIllustration from "./components/RadioWithIllustration";
@@ -333,20 +335,23 @@ function Font({ title, fontFamilyOption, fontSizeOption }: { title: string, font
}
function ElectronIntegration() {
- const [ zoomFactor, setZoomFactor ] = useTriliumOption("zoomFactor");
+ const [ zoomFactor ] = useTriliumOption("zoomFactor");
const [ nativeTitleBarVisible, setNativeTitleBarVisible ] = useTriliumOptionBool("nativeTitleBarVisible");
const [ backgroundEffects, setBackgroundEffects ] = useTriliumOptionBool("backgroundEffects");
+ const zoomPercentage = Math.round(parseFloat(zoomFactor || "1") * 100);
+
return (
-
-
+ zoomService.setZoomFactorAndSave(parseInt(v, 10) / 100)}
+ unit={t("units.percentage")}
/>
-
-
+
([]);
@@ -35,7 +36,7 @@ export default function BackupSettings() {
>
- )
+ );
}
export function AutomaticBackup() {
@@ -67,7 +68,7 @@ export function AutomaticBackup() {
{t("backup.backup_recommendation")}
- )
+ );
}
export function BackupNow({ refreshCallback }: { refreshCallback: () => void }) {
@@ -82,7 +83,7 @@ export function BackupNow({ refreshCallback }: { refreshCallback: () => void })
}}
/>
- )
+ );
}
export function BackupList({ backups }: { backups: DatabaseBackup[] }) {
@@ -92,11 +93,13 @@ export function BackupList({ backups }: { backups: DatabaseBackup[] }) {
+
{t("backup.date-and-time")}
{t("backup.path")}
+
@@ -105,15 +108,20 @@ export function BackupList({ backups }: { backups: DatabaseBackup[] }) {
{mtime ? formatDateTime(mtime) : "-"}
{filePath}
+
+
+
+
+
))
) : (
- {t("backup.no_backup_yet")}
+ {t("backup.no_backup_yet")}
)}
- );
-}
\ No newline at end of file
+ );
+}
diff --git a/apps/client/src/widgets/type_widgets/options/components/OptionsRow.css b/apps/client/src/widgets/type_widgets/options/components/OptionsRow.css
index c565d54f47..026824f589 100644
--- a/apps/client/src/widgets/type_widgets/options/components/OptionsRow.css
+++ b/apps/client/src/widgets/type_widgets/options/components/OptionsRow.css
@@ -46,6 +46,16 @@
justify-content: center;
}
+.option-row.stacked {
+ flex-direction: column;
+ align-items: stretch;
+ gap: 8px;
+}
+
+.option-row.stacked .option-row-input {
+ width: 100%;
+}
+
.option-row-link.use-tn-links {
text-decoration: none;
color: inherit;
diff --git a/apps/client/src/widgets/type_widgets/options/components/OptionsRow.tsx b/apps/client/src/widgets/type_widgets/options/components/OptionsRow.tsx
index d72ba77d04..0ff8b737b0 100644
--- a/apps/client/src/widgets/type_widgets/options/components/OptionsRow.tsx
+++ b/apps/client/src/widgets/type_widgets/options/components/OptionsRow.tsx
@@ -10,14 +10,18 @@ interface OptionsRowProps {
description?: string;
children: VNode;
centered?: boolean;
+ /** When true, stacks label above input with full-width input */
+ stacked?: boolean;
}
-export default function OptionsRow({ name, label, description, children, centered }: OptionsRowProps) {
+export default function OptionsRow({ name, label, description, children, centered, stacked }: OptionsRowProps) {
const id = useUniqueName(name);
const childWithId = cloneElement(children, { id });
+ const className = `option-row ${centered ? "centered" : ""} ${stacked ? "stacked" : ""}`;
+
return (
-
+
{label &&
{label} }
{description &&
{description} }
diff --git a/apps/client/src/widgets/type_widgets/options/sync.tsx b/apps/client/src/widgets/type_widgets/options/sync.tsx
index 1ffb40f373..f583ba5496 100644
--- a/apps/client/src/widgets/type_widgets/options/sync.tsx
+++ b/apps/client/src/widgets/type_widgets/options/sync.tsx
@@ -1,16 +1,19 @@
+import { SyncTestResponse } from "@triliumnext/commons";
import { useRef } from "preact/hooks";
+
import { t } from "../../../services/i18n";
+import server from "../../../services/server";
+import toast from "../../../services/toast";
import { openInAppHelpFromUrl } from "../../../services/utils";
import Button from "../../react/Button";
import FormGroup from "../../react/FormGroup";
-import FormTextBox, { FormTextBoxWithUnit } from "../../react/FormTextBox";
-import RawHtml from "../../react/RawHtml";
-import OptionsSection from "./components/OptionsSection";
-import { useTriliumOptions } from "../../react/hooks";
import FormText from "../../react/FormText";
-import server from "../../../services/server";
-import toast from "../../../services/toast";
-import { SyncTestResponse } from "@triliumnext/commons";
+import FormTextBox from "../../react/FormTextBox";
+import { useTriliumOptions } from "../../react/hooks";
+import RawHtml from "../../react/RawHtml";
+import OptionsRow from "./components/OptionsRow";
+import OptionsSection from "./components/OptionsSection";
+import TimeSelector from "./components/TimeSelector";
export default function SyncOptions() {
return (
@@ -18,13 +21,12 @@ export default function SyncOptions() {
>
- )
+ );
}
export function SyncConfiguration() {
- const [ options, setOptions ] = useTriliumOptions("syncServerHost", "syncServerTimeout", "syncProxy");
+ const [ options, setOptions ] = useTriliumOptions("syncServerHost", "syncProxy");
const syncServerHost = useRef(options.syncServerHost);
- const syncServerTimeout = useRef(options.syncServerTimeout);
const syncProxy = useRef(options.syncProxy);
return (
@@ -32,13 +34,12 @@ export function SyncConfiguration() {
+
+
+
+
+
+
- )
+ );
}
export function SyncTest() {
@@ -90,5 +94,5 @@ export function SyncTest() {
}}
/>
- )
-}
\ No newline at end of file
+ );
+}
diff --git a/apps/client/src/widgets/type_widgets/text/CKEditorWithWatchdog.tsx b/apps/client/src/widgets/type_widgets/text/CKEditorWithWatchdog.tsx
index 56b4d57060..dd4d9d02c9 100644
--- a/apps/client/src/widgets/type_widgets/text/CKEditorWithWatchdog.tsx
+++ b/apps/client/src/widgets/type_widgets/text/CKEditorWithWatchdog.tsx
@@ -7,7 +7,7 @@ import link from "../../../services/link";
import { useKeyboardShortcuts, useLegacyImperativeHandlers, useNoteContext, useSyncedRef, useTriliumOption } from "../../react/hooks";
import { buildConfig, BuildEditorOptions } from "./config";
-export type BoxSize = "small" | "medium" | "full";
+export type BoxSize = "small" | "medium" | "full" | "expandable";
export interface CKEditorApi {
/** returns true if user selected some text, false if there's no selection */
diff --git a/apps/client/src/widgets/type_widgets/text/ReadOnlyText.css b/apps/client/src/widgets/type_widgets/text/ReadOnlyText.css
index 96ef05295d..36293d800e 100644
--- a/apps/client/src/widgets/type_widgets/text/ReadOnlyText.css
+++ b/apps/client/src/widgets/type_widgets/text/ReadOnlyText.css
@@ -55,4 +55,14 @@ body.mobile .note-detail-readonly-text {
.edit-text-note-button:hover {
border-color: var(--button-border-color);
+}
+
+/* Inline code click-to-copy */
+.note-detail-readonly-text-content code.copyable-inline-code {
+ cursor: pointer;
+ transition: background-color 0.15s ease;
+}
+
+.note-detail-readonly-text-content code.copyable-inline-code:hover {
+ background-color: var(--accented-background-color);
}
\ No newline at end of file
diff --git a/apps/client/src/widgets/type_widgets/text/config.ts b/apps/client/src/widgets/type_widgets/text/config.ts
index 29b1a02699..e4812156e4 100644
--- a/apps/client/src/widgets/type_widgets/text/config.ts
+++ b/apps/client/src/widgets/type_widgets/text/config.ts
@@ -182,9 +182,21 @@ export async function buildConfig(opts: BuildEditorOptions): Promise
noteAutocompleteService.autocompleteSourceForCKEditor(queryText),
itemRenderer: (item) => {
+ const suggestion = item as Suggestion;
const itemElement = document.createElement("button");
- itemElement.innerHTML = `${(item as Suggestion).highlightedNotePathTitle} `;
+ const iconElement = document.createElement("span");
+ // Choose appropriate icon based on action
+ let iconClass = suggestion.icon ?? "bx bx-note";
+ if (suggestion.action === "create-note") {
+ iconClass = "bx bx-plus";
+ }
+ iconElement.className = iconClass;
+
+ itemElement.append(iconElement, document.createTextNode(" "));
+ const titleContainer = document.createElement("span");
+ titleContainer.innerHTML = suggestion.highlightedNotePathTitle ?? "";
+ itemElement.append(...titleContainer.childNodes, document.createTextNode(" "));
return itemElement;
},
diff --git a/apps/client/src/widgets/type_widgets/text/utils.ts b/apps/client/src/widgets/type_widgets/text/utils.ts
index ad8a6df23d..a3e0f382ba 100644
--- a/apps/client/src/widgets/type_widgets/text/utils.ts
+++ b/apps/client/src/widgets/type_widgets/text/utils.ts
@@ -8,17 +8,77 @@ export async function loadIncludedNote(noteId: string, $el: JQuery)
const note = await froca.getNote(noteId);
if (!note) return;
+ // Get the box size from the parent section element
+ const $section = $el.closest('section.include-note');
+ const boxSize = $section.attr('data-box-size');
+ const isExpandable = boxSize === 'expandable';
+
const $wrapper = $('');
const $link = await link.createLink(note.noteId, {
showTooltip: false
});
- $wrapper.empty().append($('
').append($link));
+ if (isExpandable) {
+ // Create expandable structure with toggle
+ const $titleRow = $('');
+ const $toggle = $('
');
+ const $title = $('').append($link);
- const { $renderedContent, type } = await content_renderer.getRenderedContent(note);
- $wrapper.append($(``).append($renderedContent));
+ $titleRow.append($toggle, $title);
+ $wrapper.append($titleRow);
+
+ const { $renderedContent, type } = await content_renderer.getRenderedContent(note);
+ const $content = $(`
`).append($renderedContent);
+ $wrapper.append($content);
+
+ // Add toggle functionality
+ $toggle.on('click', (e) => {
+ e.stopPropagation();
+ const isExpanded = $toggle.attr('aria-expanded') === 'true';
+ $toggle.attr('aria-expanded', String(!isExpanded));
+ $toggle.toggleClass('expanded');
+ $content.slideToggle(200);
+ });
+ } else {
+ // Standard display
+ $wrapper.append($('
').append($link));
+
+ const { $renderedContent, type } = await content_renderer.getRenderedContent(note);
+ $wrapper.append($(``).append($renderedContent));
+ }
$el.empty().append($wrapper);
+
+ // Watch for box-size attribute changes and re-render
+ setupBoxSizeObserver($section[0], noteId, $el);
+}
+
+// Track observers to avoid duplicates
+const boxSizeObservers = new WeakMap
();
+
+function setupBoxSizeObserver(section: Element, noteId: string, $el: JQuery) {
+ // Clean up existing observer if any
+ const existingObserver = boxSizeObservers.get(section);
+ if (existingObserver) {
+ existingObserver.disconnect();
+ }
+
+ const observer = new MutationObserver((mutations) => {
+ for (const mutation of mutations) {
+ if (mutation.type === 'attributes' && mutation.attributeName === 'data-box-size') {
+ // Re-render the included note with the new box size
+ loadIncludedNote(noteId, $el);
+ break;
+ }
+ }
+ });
+
+ observer.observe(section, {
+ attributes: true,
+ attributeFilter: ['data-box-size']
+ });
+
+ boxSizeObservers.set(section, observer);
}
export function refreshIncludedNote(container: HTMLDivElement, noteId: string) {
diff --git a/apps/edit-docs/demo/!!!meta.json b/apps/edit-docs/demo/!!!meta.json
index d8c4710f93..21ce139fd6 100644
--- a/apps/edit-docs/demo/!!!meta.json
+++ b/apps/edit-docs/demo/!!!meta.json
@@ -1,6165 +1,6204 @@
{
- "formatVersion": 2,
- "appVersion": "0.100.0",
- "files": [
- {
- "isClone": false,
- "noteId": "root",
- "notePath": [
- "root"
- ],
- "title": "root",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": true,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "attachments": [],
- "dirFileName": "root",
- "children": [
- {
- "isClone": false,
- "noteId": "uXI8DRRYXWKs",
- "notePath": [
- "root",
- "uXI8DRRYXWKs"
- ],
- "title": "Journal",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "book",
- "mime": "",
- "attributes": [
- {
- "type": "label",
- "name": "calendarRoot",
- "value": "",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-calendar",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "viewType",
- "value": "calendar",
- "isInheritable": false,
- "position": 30
- },
- {
- "type": "label",
- "name": "calendar:view",
- "value": "dayGridMonth",
- "isInheritable": false,
- "position": 40
- },
- {
- "type": "relation",
- "name": "dateTemplate",
- "value": "bRQvb9VCkc3t",
- "isInheritable": false,
- "position": 50
- }
- ],
- "dataFileName": "Journal.dat",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "rvaX6hEaQlmk",
- "notePath": [
- "root",
- "rvaX6hEaQlmk"
- ],
- "title": "Trilium Demo",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": true,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "relation",
- "name": "internalLink",
- "value": "xY1FldcqIlaS",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "relation",
- "name": "internalLink",
- "value": "Th0SHTjziC8R",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "relation",
- "name": "internalLink",
- "value": "1afuYh5pfoEP",
- "isInheritable": false,
- "position": 30
- },
- {
- "type": "relation",
- "name": "internalLink",
- "value": "FtCt1LKirRGs",
- "isInheritable": false,
- "position": 40
- },
- {
- "type": "relation",
- "name": "internalLink",
- "value": "uppxiNYbjvGw",
- "isInheritable": false,
- "position": 50
- },
- {
- "type": "relation",
- "name": "internalLink",
- "value": "Q3ve69mXIaMY",
- "isInheritable": false,
- "position": 60
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-book-reader",
- "isInheritable": false,
- "position": 70
- }
- ],
- "format": "html",
- "dataFileName": "Trilium Demo.html",
- "attachments": [
- {
- "attachmentId": "49LZY5VsPxHQ",
- "title": "icon-color.svg",
- "role": "image",
- "mime": "image/svg+xml",
- "position": 10,
- "dataFileName": "Trilium Demo_icon-color.svg"
- }
- ],
- "dirFileName": "Trilium Demo",
- "children": [
- {
- "isClone": false,
- "noteId": "Ys8DWdyfaZcf",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "Ys8DWdyfaZcf"
- ],
- "title": "Inbox",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bxs-inbox",
- "isInheritable": false,
- "position": 1
- }
- ],
- "format": "html",
- "dataFileName": "Inbox.html",
- "attachments": [],
- "dirFileName": "Inbox",
- "children": [
- {
- "isClone": false,
- "noteId": "pazSSdaZVwtg",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "Ys8DWdyfaZcf",
- "pazSSdaZVwtg"
- ],
- "title": "Grocery list for today",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Grocery list for today.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "dqqETl7LjFV7",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "Ys8DWdyfaZcf",
- "dqqETl7LjFV7"
- ],
- "title": "Book to read",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Book to read.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "A6cJSHsdETV2",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "Ys8DWdyfaZcf",
- "A6cJSHsdETV2"
- ],
- "title": "The Last Question",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "relation",
- "name": "internalLink",
- "value": "_help_nBAXQFj20hS1",
- "isInheritable": false,
- "position": 10
- }
- ],
- "format": "html",
- "dataFileName": "The Last Question.html",
- "attachments": [],
- "dirFileName": "The Last Question",
- "children": [
- {
- "isClone": false,
- "noteId": "VsFbpoySMCE3",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "Ys8DWdyfaZcf",
- "A6cJSHsdETV2",
- "VsFbpoySMCE3"
- ],
- "title": "The Last Question by Issac Asimov.pdf",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "file",
- "mime": "application/pdf",
- "attributes": [
- {
- "type": "label",
- "name": "originalFileName",
- "value": "the_last_question_-_issac_asimov.pdf",
- "isInheritable": false,
- "position": 1
- }
- ],
- "dataFileName": "The Last Question by Issac.pdf",
- "attachments": []
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "xY1FldcqIlaS",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "xY1FldcqIlaS"
- ],
- "title": "Formatting examples",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "book",
- "mime": "",
- "attributes": [],
- "attachments": [],
- "dirFileName": "Formatting examples",
- "children": [
- {
- "isClone": false,
- "noteId": "Th0SHTjziC8R",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "xY1FldcqIlaS",
- "Th0SHTjziC8R"
- ],
- "title": "School schedule",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-table",
- "isInheritable": false,
- "position": 10
- }
- ],
- "format": "html",
- "dataFileName": "School schedule.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "1afuYh5pfoEP",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "xY1FldcqIlaS",
- "1afuYh5pfoEP"
- ],
- "title": "Checkbox lists",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-check",
- "isInheritable": false,
- "position": 1
- }
- ],
- "format": "html",
- "dataFileName": "Checkbox lists.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "FtCt1LKirRGs",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "xY1FldcqIlaS",
- "FtCt1LKirRGs"
- ],
- "title": "Highlighting",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bxs-pencil",
- "isInheritable": false,
- "position": 1
- }
- ],
- "format": "html",
- "dataFileName": "Highlighting.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "uppxiNYbjvGw",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "xY1FldcqIlaS",
- "uppxiNYbjvGw"
- ],
- "title": "Code blocks",
- "notePosition": 30,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "relation",
- "name": "internalLink",
- "value": "sh460UeSCkDG",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-code-alt",
- "isInheritable": false,
- "position": 2
- }
- ],
- "format": "html",
- "dataFileName": "Code blocks.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "Q3ve69mXIaMY",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "xY1FldcqIlaS",
- "Q3ve69mXIaMY"
- ],
- "title": "Math",
- "notePosition": 40,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-calculator",
- "isInheritable": false,
- "position": 1
- }
- ],
- "format": "html",
- "dataFileName": "Math.html",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "zoH8XiuiEJSV",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV"
- ],
- "title": "Journal",
- "notePosition": 30,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "sorted",
- "value": "",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-calendar",
- "isInheritable": false,
- "position": 30
- },
- {
- "type": "relation",
- "name": "dateTemplate",
- "value": "kr6HIBBuXRwm",
- "isInheritable": false,
- "position": 20
- }
- ],
- "format": "html",
- "dataFileName": "Journal.html",
- "attachments": [],
- "dirFileName": "Journal",
- "children": [
- {
- "isClone": false,
- "noteId": "b3kSYO90QeET",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET"
- ],
- "title": "2021",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "sorted",
- "value": "",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "yearNote",
- "value": "2021",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "relation",
- "name": "child:child:template",
- "value": "kr6HIBBuXRwm",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "2021",
- "children": [
- {
- "isClone": false,
- "noteId": "iYU0SglOv14g",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "iYU0SglOv14g"
- ],
- "title": "11 - November",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "sorted",
- "value": "",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "monthNote",
- "value": "2021-11",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "relation",
- "name": "child:template",
- "value": "kr6HIBBuXRwm",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "11 - November",
- "children": [
- {
- "isClone": false,
- "noteId": "snHll0LeHI7G",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "iYU0SglOv14g",
- "snHll0LeHI7G"
- ],
- "title": "28 - Tuesday",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "dateNote",
- "value": "2021-11-28",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "relation",
- "name": "template",
- "value": "kr6HIBBuXRwm",
- "isInheritable": false,
- "position": 20
- }
- ],
- "format": "html",
- "dataFileName": "28 - Tuesday.html",
- "attachments": [],
- "dirFileName": "28 - Tuesday",
- "children": [
- {
- "isClone": false,
- "noteId": "pu9pBUH4VFPN",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "iYU0SglOv14g",
- "snHll0LeHI7G",
- "pu9pBUH4VFPN"
- ],
- "title": "Phone call about work project",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": true,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Phone call about work project.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "JfG63T2BUsrG",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "iYU0SglOv14g",
- "snHll0LeHI7G",
- "JfG63T2BUsrG"
- ],
- "title": "Christmas gift ideas",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Christmas gift ideas.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "o8F1rlidMSlU",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "iYU0SglOv14g",
- "snHll0LeHI7G",
- "o8F1rlidMSlU"
- ],
- "title": "Trusted timestamping",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Trusted timestamping.html",
- "attachments": []
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "SbaYih0D3uUk",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk"
- ],
- "title": "12 - December",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "sorted",
- "value": "",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "monthNote",
- "value": "2021-12",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "relation",
- "name": "child:template",
- "value": "kr6HIBBuXRwm",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "12 - December",
- "children": [
- {
- "isClone": false,
- "noteId": "BL4b1a0UF8Lx",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "BL4b1a0UF8Lx"
- ],
- "title": "18 - Monday",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "relation",
- "name": "template",
- "value": "kr6HIBBuXRwm",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "dateNote",
- "value": "2021-12-18",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "weight",
- "value": "74.9",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "dataFileName": "18 - Monday.html",
- "attachments": [],
- "dirFileName": "18 - Monday",
- "children": [
- {
- "isClone": false,
- "noteId": "aaULGL3KvSSH",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "BL4b1a0UF8Lx",
- "aaULGL3KvSSH"
- ],
- "title": "Meeting minutes",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Meeting minutes.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "XzkV6K6a7xO4",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "BL4b1a0UF8Lx",
- "XzkV6K6a7xO4"
- ],
- "title": "Photos from the trip",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "book",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "bookZoomLevel",
- "value": "2",
- "isInheritable": false,
- "position": 0
- }
- ],
- "attachments": [],
- "dirFileName": "Photos from the trip",
- "children": [
- {
- "isClone": false,
- "noteId": "P0BVQpp3s4PQ",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "BL4b1a0UF8Lx",
- "XzkV6K6a7xO4",
- "P0BVQpp3s4PQ"
- ],
- "title": "01.jpeg",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "image",
- "mime": "image/jpg",
- "attributes": [
- {
- "type": "label",
- "name": "originalFileName",
- "value": "01.jpeg",
- "isInheritable": false,
- "position": 1
- },
- {
- "type": "label",
- "name": "fileSize",
- "value": "16881",
- "isInheritable": false,
- "position": 2
- }
- ],
- "dataFileName": "01.jpeg",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "EahTkXB5OWCD",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "BL4b1a0UF8Lx",
- "XzkV6K6a7xO4",
- "EahTkXB5OWCD"
- ],
- "title": "02.jpeg",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "image",
- "mime": "image/jpg",
- "attributes": [
- {
- "type": "label",
- "name": "originalFileName",
- "value": "02.jpeg",
- "isInheritable": false,
- "position": 1
- },
- {
- "type": "label",
- "name": "fileSize",
- "value": "31697",
- "isInheritable": false,
- "position": 2
- }
- ],
- "dataFileName": "02.jpeg",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "Ttda71dsPGSn",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "BL4b1a0UF8Lx",
- "XzkV6K6a7xO4",
- "Ttda71dsPGSn"
- ],
- "title": "03.jpeg",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "image",
- "mime": "image/jpg",
- "attributes": [
- {
- "type": "label",
- "name": "originalFileName",
- "value": "03.jpeg",
- "isInheritable": false,
- "position": 1
- },
- {
- "type": "label",
- "name": "fileSize",
- "value": "72522",
- "isInheritable": false,
- "position": 2
- }
- ],
- "dataFileName": "03.jpeg",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "droyGgN0bsMD",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "BL4b1a0UF8Lx",
- "XzkV6K6a7xO4",
- "droyGgN0bsMD"
- ],
- "title": "04.jpeg",
- "notePosition": 30,
- "prefix": null,
- "isExpanded": false,
- "type": "image",
- "mime": "image/jpg",
- "attributes": [
- {
- "type": "label",
- "name": "originalFileName",
- "value": "04.jpeg",
- "isInheritable": false,
- "position": 1
- },
- {
- "type": "label",
- "name": "fileSize",
- "value": "43670",
- "isInheritable": false,
- "position": 2
- }
- ],
- "dataFileName": "04.jpeg",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "cVtKAYgEWRG2",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "BL4b1a0UF8Lx",
- "XzkV6K6a7xO4",
- "cVtKAYgEWRG2"
- ],
- "title": "05.jpeg",
- "notePosition": 40,
- "prefix": null,
- "isExpanded": false,
- "type": "image",
- "mime": "image/jpg",
- "attributes": [
- {
- "type": "label",
- "name": "originalFileName",
- "value": "05.jpeg",
- "isInheritable": false,
- "position": 1
- },
- {
- "type": "label",
- "name": "fileSize",
- "value": "22327",
- "isInheritable": false,
- "position": 2
- }
- ],
- "dataFileName": "05.jpeg",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "tV1Kjv6LEKPK",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "BL4b1a0UF8Lx",
- "XzkV6K6a7xO4",
- "tV1Kjv6LEKPK"
- ],
- "title": "06.jpeg",
- "notePosition": 50,
- "prefix": null,
- "isExpanded": false,
- "type": "image",
- "mime": "image/jpg",
- "attributes": [
- {
- "type": "label",
- "name": "originalFileName",
- "value": "06.jpeg",
- "isInheritable": false,
- "position": 1
- },
- {
- "type": "label",
- "name": "fileSize",
- "value": "79751",
- "isInheritable": false,
- "position": 2
- }
- ],
- "dataFileName": "06.jpeg",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "5wcyB4t5al4h",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "BL4b1a0UF8Lx",
- "XzkV6K6a7xO4",
- "5wcyB4t5al4h"
- ],
- "title": "07.jpeg",
- "notePosition": 60,
- "prefix": null,
- "isExpanded": false,
- "type": "image",
- "mime": "image/jpg",
- "attributes": [
- {
- "type": "label",
- "name": "originalFileName",
- "value": "07.jpeg",
- "isInheritable": false,
- "position": 1
- },
- {
- "type": "label",
- "name": "fileSize",
- "value": "30223",
- "isInheritable": false,
- "position": 2
- }
- ],
- "dataFileName": "07.jpeg",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "ppwyRRjdOAWX",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "BL4b1a0UF8Lx",
- "XzkV6K6a7xO4",
- "ppwyRRjdOAWX"
- ],
- "title": "08.jpeg",
- "notePosition": 70,
- "prefix": null,
- "isExpanded": false,
- "type": "image",
- "mime": "image/jpg",
- "attributes": [
- {
- "type": "label",
- "name": "originalFileName",
- "value": "08.jpeg",
- "isInheritable": false,
- "position": 1
- },
- {
- "type": "label",
- "name": "fileSize",
- "value": "39928",
- "isInheritable": false,
- "position": 2
- }
- ],
- "dataFileName": "08.jpeg",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "qYLcsGWPaUBw",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "BL4b1a0UF8Lx",
- "XzkV6K6a7xO4",
- "qYLcsGWPaUBw"
- ],
- "title": "09.jpeg",
- "notePosition": 80,
- "prefix": null,
- "isExpanded": false,
- "type": "image",
- "mime": "image/jpg",
- "attributes": [
- {
- "type": "label",
- "name": "originalFileName",
- "value": "09.jpeg",
- "isInheritable": false,
- "position": 1
- },
- {
- "type": "label",
- "name": "fileSize",
- "value": "48918",
- "isInheritable": false,
- "position": 2
- }
- ],
- "dataFileName": "09.jpeg",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "jYFCqQVLD15p",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "BL4b1a0UF8Lx",
- "XzkV6K6a7xO4",
- "jYFCqQVLD15p"
- ],
- "title": "10.jpeg",
- "notePosition": 90,
- "prefix": null,
- "isExpanded": false,
- "type": "image",
- "mime": "image/jpg",
- "attributes": [
- {
- "type": "label",
- "name": "originalFileName",
- "value": "10.jpeg",
- "isInheritable": false,
- "position": 1
- },
- {
- "type": "label",
- "name": "fileSize",
- "value": "44150",
- "isInheritable": false,
- "position": 2
- }
- ],
- "dataFileName": "10.jpeg",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "xQxHCWRvFGOZ",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "BL4b1a0UF8Lx",
- "XzkV6K6a7xO4",
- "xQxHCWRvFGOZ"
- ],
- "title": "11.jpeg",
- "notePosition": 100,
- "prefix": null,
- "isExpanded": false,
- "type": "image",
- "mime": "image/jpg",
- "attributes": [
- {
- "type": "label",
- "name": "originalFileName",
- "value": "11.jpeg",
- "isInheritable": false,
- "position": 1
- },
- {
- "type": "label",
- "name": "fileSize",
- "value": "76231",
- "isInheritable": false,
- "position": 2
- }
- ],
- "dataFileName": "11.jpeg",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "9HheXquf5atI",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "BL4b1a0UF8Lx",
- "XzkV6K6a7xO4",
- "9HheXquf5atI"
- ],
- "title": "12.jpeg",
- "notePosition": 110,
- "prefix": null,
- "isExpanded": false,
- "type": "image",
- "mime": "image/jpg",
- "attributes": [
- {
- "type": "label",
- "name": "originalFileName",
- "value": "12.jpeg",
- "isInheritable": false,
- "position": 1
- },
- {
- "type": "label",
- "name": "fileSize",
- "value": "44286",
- "isInheritable": false,
- "position": 2
- }
- ],
- "dataFileName": "12.jpeg",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "N3H75XH3nGRe",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "BL4b1a0UF8Lx",
- "N3H75XH3nGRe"
- ],
- "title": "Send invites for christmas party",
- "notePosition": 20,
- "prefix": "TODO",
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "task",
- "value": "",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "location",
- "value": "work",
- "isInheritable": false,
- "position": 30
- },
- {
- "type": "label",
- "name": "cssClass",
- "value": "todo",
- "isInheritable": false,
- "position": 40
- },
- {
- "type": "label",
- "name": "cssClass",
- "value": "todo",
- "isInheritable": false,
- "position": 50
- },
- {
- "type": "label",
- "name": "todoDate",
- "value": "2021-12-18",
- "isInheritable": false,
- "position": 60
- }
- ],
- "format": "html",
- "dataFileName": "TODO - Send invites for christ.html",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "E5ZFA3tndbcj",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "E5ZFA3tndbcj"
- ],
- "title": "19 - Tuesday",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "relation",
- "name": "template",
- "value": "kr6HIBBuXRwm",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "dateNote",
- "value": "2021-12-19",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "weight",
- "value": "75.4",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "dataFileName": "19 - Tuesday.html",
- "attachments": [],
- "dirFileName": "19 - Tuesday",
- "children": [
- {
- "isClone": false,
- "noteId": "UB4Rt240VgV9",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "E5ZFA3tndbcj",
- "UB4Rt240VgV9"
- ],
- "title": "Dentist appointment",
- "notePosition": 0,
- "prefix": "DONE",
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "task",
- "value": "",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "tag",
- "value": "health",
- "isInheritable": false,
- "position": 30
- },
- {
- "type": "label",
- "name": "cssClass",
- "value": "done",
- "isInheritable": false,
- "position": 40
- },
- {
- "type": "label",
- "name": "todoDate",
- "value": "2021-12-19",
- "isInheritable": false,
- "position": 50
- },
- {
- "type": "label",
- "name": "doneDate",
- "value": "2021-12-19",
- "isInheritable": false,
- "position": 60
- }
- ],
- "format": "html",
- "dataFileName": "DONE - Dentist appointment.html",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "YQxQ5rcWiFvQ",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "YQxQ5rcWiFvQ"
- ],
- "title": "20 - Wednesday",
- "notePosition": 30,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "relation",
- "name": "template",
- "value": "kr6HIBBuXRwm",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "dateNote",
- "value": "2021-12-20",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "weight",
- "value": "75.2",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "dataFileName": "20 - Wednesday.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "Vf0GuwMAsitj",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "Vf0GuwMAsitj"
- ],
- "title": "21 - Thursday",
- "notePosition": 40,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "dateNote",
- "value": "2021-12-21",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "relation",
- "name": "template",
- "value": "kr6HIBBuXRwm",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "weight",
- "value": "76",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "dataFileName": "21 - Thursday.html",
- "attachments": [],
- "dirFileName": "21 - Thursday",
- "children": [
- {
- "isClone": false,
- "noteId": "UO2EPOezeQoa",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "Vf0GuwMAsitj",
- "UO2EPOezeQoa"
- ],
- "title": "Christmas shopping",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": true,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Christmas shopping.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "7Nc2Ovjyc66i",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "Vf0GuwMAsitj",
- "7Nc2Ovjyc66i"
- ],
- "title": "Office party",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Office party.html",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "ilB1T75UG19p",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "ilB1T75UG19p"
- ],
- "title": "22 - Friday",
- "notePosition": 50,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "dateNote",
- "value": "2021-12-22",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "relation",
- "name": "template",
- "value": "kr6HIBBuXRwm",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "weight",
- "value": "75.9",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "dataFileName": "22 - Friday.html",
- "attachments": [],
- "dirFileName": "22 - Friday",
- "children": [
- {
- "isClone": false,
- "noteId": "n7WlrMv9Kt9O",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "ilB1T75UG19p",
- "n7WlrMv9Kt9O"
- ],
- "title": "Christmas shopping",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Christmas shopping.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "kv6L6RAdwL4h",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "ilB1T75UG19p",
- "kv6L6RAdwL4h"
- ],
- "title": "The Mechanical",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "The Mechanical.html",
- "attachments": [],
- "dirFileName": "The Mechanical",
- "children": [
- {
- "isClone": false,
- "noteId": "MV2KF7Ma6nCD",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "ilB1T75UG19p",
- "kv6L6RAdwL4h",
- "MV2KF7Ma6nCD"
- ],
- "title": "Highlights",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Highlights.html",
- "attachments": []
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "Zjezi8WBQ1Mu",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "Zjezi8WBQ1Mu"
- ],
- "title": "23 - Saturday",
- "notePosition": 60,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "relation",
- "name": "template",
- "value": "kr6HIBBuXRwm",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "dateNote",
- "value": "2021-12-23",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "weight",
- "value": "75.6",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "dataFileName": "23 - Saturday.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "gW1WbDNQRMUC",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "gW1WbDNQRMUC"
- ],
- "title": "24 - Sunday - Christmas Eve!",
- "notePosition": 70,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "relation",
- "name": "template",
- "value": "kr6HIBBuXRwm",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "dateNote",
- "value": "2021-12-24",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "weight",
- "value": "76.1",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "dataFileName": "24 - Sunday - Christmas Eve!.html",
- "attachments": [],
- "dirFileName": "24 - Sunday - Christmas Eve!",
- "children": [
- {
- "isClone": false,
- "noteId": "7MvrqjQXdy65",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "gW1WbDNQRMUC",
- "7MvrqjQXdy65"
- ],
- "title": "Buy a board game for Alice",
- "notePosition": 0,
- "prefix": "DONE",
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "task",
- "value": "",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "location",
- "value": "mall",
- "isInheritable": false,
- "position": 30
- },
- {
- "type": "label",
- "name": "cssClass",
- "value": "done",
- "isInheritable": false,
- "position": 40
- },
- {
- "type": "label",
- "name": "tag",
- "value": "christmas",
- "isInheritable": false,
- "position": 50
- },
- {
- "type": "label",
- "name": "tag",
- "value": "shopping",
- "isInheritable": false,
- "position": 60
- },
- {
- "type": "label",
- "name": "todoDate",
- "value": "2021-12-20",
- "isInheritable": false,
- "position": 70
- },
- {
- "type": "label",
- "name": "doneDate",
- "value": "2021-12-24",
- "isInheritable": false,
- "position": 80
- }
- ],
- "format": "html",
- "dataFileName": "DONE - Buy a board game for Al.html",
- "attachments": [
- {
- "attachmentId": "SmnN1IA6sqy7",
- "title": "codenames.jpg",
- "role": "image",
- "mime": "image/jpg",
- "position": 10,
- "dataFileName": "DONE - Buy a board game fo.jpg"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "CRjUrigNXYnP",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "gW1WbDNQRMUC",
- "CRjUrigNXYnP"
- ],
- "title": "Buy milk",
- "notePosition": 10,
- "prefix": "TODO",
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "task",
- "value": "",
- "isInheritable": false,
- "position": 1
- },
- {
- "type": "label",
- "name": "location",
- "value": "tesco",
- "isInheritable": false,
- "position": 3
- },
- {
- "type": "label",
- "name": "cssClass",
- "value": "todo",
- "isInheritable": false,
- "position": 4
- },
- {
- "type": "label",
- "name": "cssClass",
- "value": "todo",
- "isInheritable": false,
- "position": 4
- },
- {
- "type": "label",
- "name": "tag",
- "value": "groceries",
- "isInheritable": false,
- "position": 5
- },
- {
- "type": "label",
- "name": "tag",
- "value": "shopping",
- "isInheritable": false,
- "position": 7
- },
- {
- "type": "label",
- "name": "todoDate",
- "value": "2021-12-24",
- "isInheritable": false,
- "position": 6
- }
- ],
- "format": "html",
- "dataFileName": "TODO - Buy milk.html",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "c5sYRApFBW5v",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "SbaYih0D3uUk",
- "c5sYRApFBW5v"
- ],
- "title": "30 - Thursday",
- "notePosition": 80,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "relation",
- "name": "template",
- "value": "kr6HIBBuXRwm",
- "isInheritable": false,
- "position": 30
- },
- {
- "type": "label",
- "name": "dateNote",
- "value": "2021-12-30",
- "isInheritable": false,
- "position": 31
- }
- ],
- "format": "html",
- "dataFileName": "30 - Thursday.html",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "AD8gDaZaJekk",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "AD8gDaZaJekk"
- ],
- "title": "Epics",
- "notePosition": 30,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Epics.html",
- "attachments": [],
- "dirFileName": "Epics",
- "children": [
- {
- "isClone": false,
- "noteId": "c3NaitsUCQck",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "AD8gDaZaJekk",
- "c3NaitsUCQck"
- ],
- "title": "Christmas",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Christmas.html",
- "attachments": [],
- "dirFileName": "Christmas",
- "children": [
- {
- "isClone": false,
- "noteId": "Lu42Q5okeVuB",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "AD8gDaZaJekk",
- "c3NaitsUCQck",
- "Lu42Q5okeVuB"
- ],
- "title": "Vacation days",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Vacation days.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "sHSzraHtxH8l",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "AD8gDaZaJekk",
- "c3NaitsUCQck",
- "sHSzraHtxH8l"
- ],
- "title": "Christmas dinner",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Christmas dinner.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "Jk1NHUjA5nIT",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "AD8gDaZaJekk",
- "c3NaitsUCQck",
- "Jk1NHUjA5nIT"
- ],
- "title": "Shopping",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "attachments": [],
- "dirFileName": "Shopping",
- "children": [
- {
- "isClone": true,
- "noteId": "JfG63T2BUsrG",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "AD8gDaZaJekk",
- "c3NaitsUCQck",
- "Jk1NHUjA5nIT",
- "JfG63T2BUsrG"
- ],
- "title": "Christmas gift ideas",
- "prefix": "28. 11. 2017",
- "dataFileName": "28. 11. 2017 - Christmas gift ideas.clone.html",
- "type": "text",
- "format": "html"
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "cO1ZpqA44IcF",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "b3kSYO90QeET",
- "AD8gDaZaJekk",
- "cO1ZpqA44IcF"
- ],
- "title": "Vacation",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Vacation.html",
- "attachments": []
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "kr6HIBBuXRwm",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "zoH8XiuiEJSV",
- "kr6HIBBuXRwm"
- ],
- "title": "Day template",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "label:weight",
- "value": "promoted,number,single,precision=1",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-notepad",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "excludeFromNoteMap",
- "value": "",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "dataFileName": "Day template.html",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "bZBkjm466gSM",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM"
- ],
- "title": "Tech",
- "notePosition": 40,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-desktop",
- "isInheritable": false,
- "position": 10
- }
- ],
- "format": "html",
- "dataFileName": "Tech.html",
- "attachments": [],
- "dirFileName": "Tech",
- "children": [
- {
- "isClone": false,
- "noteId": "RomrYHfAtLTR",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "RomrYHfAtLTR"
- ],
- "title": "Security",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-lock-alt",
- "isInheritable": false,
- "position": 10
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "Security",
- "children": [
- {
- "isClone": true,
- "noteId": "o8F1rlidMSlU",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "RomrYHfAtLTR",
- "o8F1rlidMSlU"
- ],
- "title": "Trusted timestamping",
- "prefix": null,
- "dataFileName": "Trusted timestamping.clone.html",
- "type": "text",
- "format": "html"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "GPaZYkEBBX0o",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "GPaZYkEBBX0o"
- ],
- "title": "Linux",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bxl-tux",
- "isInheritable": false,
- "position": 10
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "Linux",
- "children": [
- {
- "isClone": false,
- "noteId": "ogwx0UzfkpFd",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "GPaZYkEBBX0o",
- "ogwx0UzfkpFd"
- ],
- "title": "History",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "History.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "MQvl2MArKI33",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "GPaZYkEBBX0o",
- "MQvl2MArKI33"
- ],
- "title": "Bash scripting",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Bash scripting.html",
- "attachments": [],
- "dirFileName": "Bash scripting",
- "children": [
- {
- "isClone": false,
- "noteId": "J3x4Au74CLjn",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "GPaZYkEBBX0o",
- "MQvl2MArKI33",
- "J3x4Au74CLjn"
- ],
- "title": "While loop",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "While loop.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "XjmLbxm47KRJ",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "GPaZYkEBBX0o",
- "MQvl2MArKI33",
- "XjmLbxm47KRJ"
- ],
- "title": "Bash startup modes",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Bash startup modes.html",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "yWP7kwU5IQyo",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "GPaZYkEBBX0o",
- "yWP7kwU5IQyo"
- ],
- "title": "Ubuntu",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Ubuntu.html",
- "attachments": [],
- "dirFileName": "Ubuntu",
- "children": [
- {
- "isClone": false,
- "noteId": "6IjjOQJn7k50",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "GPaZYkEBBX0o",
- "yWP7kwU5IQyo",
- "6IjjOQJn7k50"
- ],
- "title": "Unity shortcuts",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Unity shortcuts.html",
- "attachments": []
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "6mWClR7od2pV",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "6mWClR7od2pV"
- ],
- "title": "Programming",
- "notePosition": 30,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-code-alt",
- "isInheritable": false,
- "position": 10
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "Programming",
- "children": [
- {
- "isClone": false,
- "noteId": "x6YTurY3BTiG",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "6mWClR7od2pV",
- "x6YTurY3BTiG"
- ],
- "title": "Java",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bxl-java",
- "isInheritable": false,
- "position": 10
- }
- ],
- "format": "html",
- "dataFileName": "Java.html",
- "attachments": []
- },
- {
- "isClone": true,
- "noteId": "MQvl2MArKI33",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "6mWClR7od2pV",
- "MQvl2MArKI33"
- ],
- "title": "Bash scripting",
- "prefix": null,
- "dataFileName": "Bash scripting.clone.html",
- "type": "text",
- "format": "html"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "SHbxthISQkxg",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "SHbxthISQkxg"
- ],
- "title": "Node.js",
- "notePosition": 40,
- "prefix": null,
- "isExpanded": false,
- "type": "book",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bxl-nodejs",
- "isInheritable": false,
- "position": 10
- }
- ],
- "attachments": [],
- "dirFileName": "Node.js",
- "children": [
- {
- "isClone": false,
- "noteId": "bXXkjeUR2M5Y",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "SHbxthISQkxg",
- "bXXkjeUR2M5Y"
- ],
- "title": "Intro",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Intro.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "wys20ie8Saky",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "SHbxthISQkxg",
- "wys20ie8Saky"
- ],
- "title": "Overview",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Overview.html",
- "attachments": [],
- "dirFileName": "Overview",
- "children": [
- {
- "isClone": false,
- "noteId": "d3ghNjFh60OT",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "SHbxthISQkxg",
- "wys20ie8Saky",
- "d3ghNjFh60OT"
- ],
- "title": "History",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "History.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "SN03WufBiQyo",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "SHbxthISQkxg",
- "wys20ie8Saky",
- "SN03WufBiQyo"
- ],
- "title": "Platform architecture",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Platform architecture.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "ZnHMVQBreHkY",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "SHbxthISQkxg",
- "wys20ie8Saky",
- "ZnHMVQBreHkY"
- ],
- "title": "Industry support",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Industry support.html",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "Gwt1NcVHVN4J",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "bZBkjm466gSM",
- "SHbxthISQkxg",
- "Gwt1NcVHVN4J"
- ],
- "title": "Releases",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Releases.html",
- "attachments": []
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "dvgVuMNvit5M",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M"
- ],
- "title": "Note Types",
- "notePosition": 60,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-file",
- "isInheritable": false,
- "position": 10
- }
- ],
- "format": "html",
- "dataFileName": "Note Types.html",
- "attachments": [],
- "dirFileName": "Note Types",
- "children": [
- {
- "isClone": false,
- "noteId": "vnyKLHvbHZa5",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "vnyKLHvbHZa5"
- ],
- "title": "Canvas",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": true,
- "type": "canvas",
- "mime": "application/json",
- "attributes": [],
- "dataFileName": "Canvas.json",
- "attachments": [
- {
- "attachmentId": "C6BFKNdZQHRC",
- "title": "canvas-export.svg",
- "role": "image",
- "mime": "image/svg+xml",
- "position": 0,
- "dataFileName": "Canvas_canvas-export.svg"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "6156RTTenVtt",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "6156RTTenVtt"
- ],
- "title": "Mermaid Diagrams",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "book",
- "mime": "",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-selection",
- "isInheritable": false,
- "position": 10
- }
- ],
- "attachments": [],
- "dirFileName": "Mermaid Diagrams",
- "children": [
- {
- "isClone": false,
- "noteId": "SHvERoLB6fj8",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "6156RTTenVtt",
- "SHvERoLB6fj8"
- ],
- "title": "Flow",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "mermaid",
- "mime": "text/mermaid",
- "attributes": [],
- "dataFileName": "Flow.txt",
- "attachments": [
- {
- "attachmentId": "DRQRqkeasUcb",
- "title": "mermaid-export.svg",
- "role": "image",
- "mime": "image/svg+xml",
- "position": 10,
- "dataFileName": "Flow_mermaid-export.svg"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "EQPqvF08hPVy",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "6156RTTenVtt",
- "EQPqvF08hPVy"
- ],
- "title": "Flow (ELK)",
- "notePosition": 11,
- "prefix": null,
- "isExpanded": false,
- "type": "mermaid",
- "mime": "text/mermaid",
- "attributes": [],
- "dataFileName": "Flow (ELK).txt",
- "attachments": [
- {
- "attachmentId": "dVGC3G8tekQW",
- "title": "mermaid-export.svg",
- "role": "image",
- "mime": "image/svg+xml",
- "position": 10,
- "dataFileName": "Flow (ELK)_mermaid-export.svg"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "hPXTC0epiXkk",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "6156RTTenVtt",
- "hPXTC0epiXkk"
- ],
- "title": "Sequence",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "mermaid",
- "mime": "text/mermaid",
- "attributes": [],
- "dataFileName": "Sequence.txt",
- "attachments": [
- {
- "attachmentId": "xSLnrl7h3fiT",
- "title": "mermaid-export.svg",
- "role": "image",
- "mime": "image/svg+xml",
- "position": 10,
- "dataFileName": "Sequence_mermaid-export.svg"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "a8AMHbDdTyNz",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "6156RTTenVtt",
- "a8AMHbDdTyNz"
- ],
- "title": "Gantt",
- "notePosition": 30,
- "prefix": null,
- "isExpanded": false,
- "type": "mermaid",
- "mime": "text/plain",
- "attributes": [],
- "dataFileName": "Gantt.txt",
- "attachments": [
- {
- "attachmentId": "Zk2G65QXLBkz",
- "title": "mermaid-export.svg",
- "role": "image",
- "mime": "image/svg+xml",
- "position": 10,
- "dataFileName": "Gantt_mermaid-export.svg"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "rmAseO7ISgEK",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "6156RTTenVtt",
- "rmAseO7ISgEK"
- ],
- "title": "Class",
- "notePosition": 40,
- "prefix": null,
- "isExpanded": false,
- "type": "mermaid",
- "mime": "text/plain",
- "attributes": [],
- "dataFileName": "Class.txt",
- "attachments": [
- {
- "attachmentId": "kO7BRtEJU47L",
- "title": "mermaid-export.svg",
- "role": "image",
- "mime": "image/svg+xml",
- "position": 10,
- "dataFileName": "Class_mermaid-export.svg"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "gZKhj4WEYrRY",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "6156RTTenVtt",
- "gZKhj4WEYrRY"
- ],
- "title": "State",
- "notePosition": 50,
- "prefix": null,
- "isExpanded": false,
- "type": "mermaid",
- "mime": "text/plain",
- "attributes": [],
- "dataFileName": "State.txt",
- "attachments": [
- {
- "attachmentId": "QEYXvcbekWg8",
- "title": "mermaid-export.svg",
- "role": "image",
- "mime": "image/svg+xml",
- "position": 10,
- "dataFileName": "State_mermaid-export.svg"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "3LrbigleD5U6",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "6156RTTenVtt",
- "3LrbigleD5U6"
- ],
- "title": "Mind Map",
- "notePosition": 60,
- "prefix": null,
- "isExpanded": false,
- "type": "mermaid",
- "mime": "text/mermaid",
- "attributes": [],
- "dataFileName": "Mind Map.txt",
- "attachments": [
- {
- "attachmentId": "QWELEP3BIox8",
- "title": "mermaid-export.svg",
- "role": "image",
- "mime": "image/svg+xml",
- "position": 10,
- "dataFileName": "Mind Map_mermaid-export.svg"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "eWRu1caODwQ7",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "6156RTTenVtt",
- "eWRu1caODwQ7"
- ],
- "title": "Pie",
- "notePosition": 70,
- "prefix": null,
- "isExpanded": false,
- "type": "mermaid",
- "mime": "text/plain",
- "attributes": [],
- "dataFileName": "Pie.txt",
- "attachments": [
- {
- "attachmentId": "8QESGpZlxlaP",
- "title": "mermaid-export.svg",
- "role": "image",
- "mime": "image/svg+xml",
- "position": 10,
- "dataFileName": "Pie_mermaid-export.svg"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "zCZPqmBtCkk9",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "6156RTTenVtt",
- "zCZPqmBtCkk9"
- ],
- "title": "Journey",
- "notePosition": 80,
- "prefix": null,
- "isExpanded": false,
- "type": "mermaid",
- "mime": "text/plain",
- "attributes": [],
- "dataFileName": "Journey.txt",
- "attachments": [
- {
- "attachmentId": "jXvpt0lsL1Wj",
- "title": "mermaid-export.svg",
- "role": "image",
- "mime": "image/svg+xml",
- "position": 10,
- "dataFileName": "Journey_mermaid-export.svg"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "Pnv2FquBIfl5",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "6156RTTenVtt",
- "Pnv2FquBIfl5"
- ],
- "title": "Git",
- "notePosition": 90,
- "prefix": null,
- "isExpanded": false,
- "type": "mermaid",
- "mime": "text/plain",
- "attributes": [],
- "dataFileName": "Git.txt",
- "attachments": [
- {
- "attachmentId": "FFBAw2a1dx84",
- "title": "mermaid-export.svg",
- "role": "image",
- "mime": "image/svg+xml",
- "position": 10,
- "dataFileName": "Git_mermaid-export.svg"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "dZ3AQfk4DMUh",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "6156RTTenVtt",
- "dZ3AQfk4DMUh"
- ],
- "title": "Entity Relationship",
- "notePosition": 100,
- "prefix": null,
- "isExpanded": false,
- "type": "mermaid",
- "mime": "text/plain",
- "attributes": [],
- "dataFileName": "Entity Relationship.txt",
- "attachments": [
- {
- "attachmentId": "DJgvhIa4o6vm",
- "title": "mermaid-export.svg",
- "role": "image",
- "mime": "image/svg+xml",
- "position": 10,
- "dataFileName": "Entity Relationship_mermai.svg"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "6F50lXa4nQdo",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "6156RTTenVtt",
- "6F50lXa4nQdo"
- ],
- "title": "Bar chart",
- "notePosition": 110,
- "prefix": null,
- "isExpanded": false,
- "type": "mermaid",
- "mime": "text/mermaid",
- "attributes": [],
- "dataFileName": "Bar chart.txt",
- "attachments": [
- {
- "attachmentId": "c1QUhX4T1LxY",
- "title": "mermaid-export.svg",
- "role": "image",
- "mime": "image/svg+xml",
- "position": 10,
- "dataFileName": "Bar chart_mermaid-export.svg"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "KTsZskCGRbA4",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "6156RTTenVtt",
- "KTsZskCGRbA4"
- ],
- "title": "C4",
- "notePosition": 120,
- "prefix": null,
- "isExpanded": false,
- "type": "mermaid",
- "mime": "text/plain",
- "attributes": [],
- "dataFileName": "C4.txt",
- "attachments": [
- {
- "attachmentId": "Sr89usqNJfOw",
- "title": "mermaid-export.svg",
- "role": "image",
- "mime": "image/svg+xml",
- "position": 10,
- "dataFileName": "C4_mermaid-export.svg"
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "5eoXhBVBJmVS",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "5eoXhBVBJmVS"
- ],
- "title": "Mind Map",
- "notePosition": 30,
- "prefix": null,
- "isExpanded": true,
- "type": "mindMap",
- "mime": "application/json",
- "attributes": [],
- "dataFileName": "Mind Map.json",
- "attachments": [
- {
- "attachmentId": "mf1aX48Kwveu",
- "title": "mindmap-export.svg",
- "role": "image",
- "mime": "image/svg+xml",
- "position": 0,
- "dataFileName": "Mind Map_mindmap-export.svg"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "65Kj96Nbdc7Q",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "65Kj96Nbdc7Q"
- ],
- "title": "Geo Map (The Seven Wonders of the World)",
- "notePosition": 40,
- "prefix": null,
- "isExpanded": false,
- "type": "book",
- "mime": "",
- "attributes": [
- {
- "type": "relation",
- "name": "template",
- "value": "_template_geo_map",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "label:geolocation",
- "value": "promoted,alias=Geolocation,single,text",
- "isInheritable": true,
- "position": 10
- },
- {
- "type": "label",
- "name": "hidePromotedAttributes",
- "value": "",
- "isInheritable": false,
- "position": 20
- }
- ],
- "attachments": [
- {
- "attachmentId": "jPOilfLdSmbX",
- "title": "geoMap.json",
- "role": "viewConfig",
- "mime": "application/json",
- "position": 0,
- "dataFileName": "Geo Map (The Seven Wonder.json"
- }
- ],
- "dirFileName": "Geo Map (The Seven Wonders of the World)",
- "children": [
- {
- "isClone": false,
- "noteId": "CM2Anb6Tre6X",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "65Kj96Nbdc7Q",
- "CM2Anb6Tre6X"
- ],
- "title": "The Colosseum, Rome, Italy",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "geolocation",
- "value": "41.89024211851462, 12.492263083403595",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-circle",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "dataFileName": "The Colosseum, Rome, Italy.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "cQzdY4sLOH09",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "65Kj96Nbdc7Q",
- "cQzdY4sLOH09"
- ],
- "title": "The Great Wall of China",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "geolocation",
- "value": "40.431907671437244, 116.57035343915216",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-selection",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "dataFileName": "The Great Wall of China.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "5SW71KrDoAP3",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "65Kj96Nbdc7Q",
- "5SW71KrDoAP3"
- ],
- "title": "The Taj Mahal, India",
- "notePosition": 30,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "geolocation",
- "value": "27.175173410074475, 78.04213146744753",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-arch",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "dataFileName": "The Taj Mahal, India.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "1EDzMGtWVNOv",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "65Kj96Nbdc7Q",
- "1EDzMGtWVNOv"
- ],
- "title": "Christ the Redeemer, Brazil",
- "notePosition": 40,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "geolocation",
- "value": "-22.951993968508837, -43.21044464113274",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-church",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "dataFileName": "Christ the Redeemer, Brazil.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "efZsyQHpu0k7",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "65Kj96Nbdc7Q",
- "efZsyQHpu0k7"
- ],
- "title": "Machu Picchu, Peru",
- "notePosition": 50,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "geolocation",
- "value": "-13.163198787170078, -72.54528356174288",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bxs-castle",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "dataFileName": "Machu Picchu, Peru.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "DYP8VQ7iEipa",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "65Kj96Nbdc7Q",
- "DYP8VQ7iEipa"
- ],
- "title": "Chichén Itzá, Mexico",
- "notePosition": 60,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "geolocation",
- "value": "20.678882007143176, -88.56836961554815",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bxs-component",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "dataFileName": "Chichén Itzá, Mexico.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "eDTxcs4A7xYB",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "dvgVuMNvit5M",
- "65Kj96Nbdc7Q",
- "eDTxcs4A7xYB"
- ],
- "title": "Petra, Jordan",
- "notePosition": 70,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "geolocation",
- "value": "30.32084750671952, 35.481009100454926",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bxs-castle",
- "isInheritable": false,
- "position": 30
- }
- ],
- "format": "html",
- "dataFileName": "Petra, Jordan.html",
- "attachments": []
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "XpCKD6IODUj2",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "XpCKD6IODUj2"
- ],
- "title": "Books",
- "notePosition": 130,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "relation",
- "name": "child:template",
- "value": "O9xYjAzeyT9O",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "wordCount",
- "value": "",
- "isInheritable": true,
- "position": 20
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-book-open",
- "isInheritable": false,
- "position": 21
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "Books",
- "children": [
- {
- "isClone": false,
- "noteId": "rdGlenjQSD4y",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "XpCKD6IODUj2",
- "rdGlenjQSD4y"
- ],
- "title": "To read",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "To read.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "O9xYjAzeyT9O",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "XpCKD6IODUj2",
- "O9xYjAzeyT9O"
- ],
- "title": "Book template",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-book-reader",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "label:readingEnd",
- "value": "promoted,single,date",
- "isInheritable": false,
- "position": 30
- },
- {
- "type": "label",
- "name": "label:readingStart",
- "value": "promoted,single,date",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "label:author",
- "value": "promoted,single,text",
- "isInheritable": false,
- "position": 50
- },
- {
- "type": "label",
- "name": "template",
- "value": "",
- "isInheritable": false,
- "position": 60
- },
- {
- "type": "label",
- "name": "label:link",
- "value": "promoted,single,url",
- "isInheritable": false,
- "position": 40
- }
- ],
- "format": "html",
- "dataFileName": "Book template.html",
- "attachments": [],
- "dirFileName": "Book template",
- "children": [
- {
- "isClone": false,
- "noteId": "J6gog8wRwN8g",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "XpCKD6IODUj2",
- "O9xYjAzeyT9O",
- "J6gog8wRwN8g"
- ],
- "title": "Highlights",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Highlights.html",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "rZ3BP6Qfyker",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "XpCKD6IODUj2",
- "rZ3BP6Qfyker"
- ],
- "title": "Reviews",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "relation",
- "name": "child:template",
- "value": "O9xYjAzeyT9O",
- "isInheritable": false,
- "position": 10
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "Reviews",
- "children": [
- {
- "isClone": true,
- "noteId": "kv6L6RAdwL4h",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "XpCKD6IODUj2",
- "rZ3BP6Qfyker",
- "kv6L6RAdwL4h"
- ],
- "title": "The Mechanical",
- "prefix": null,
- "dataFileName": "The Mechanical.clone.html",
- "type": "text",
- "format": "html"
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "B2ao3EopB5yW",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "B2ao3EopB5yW"
- ],
- "title": "Work",
- "notePosition": 150,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-briefcase-alt",
- "isInheritable": false,
- "position": 10
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "Work",
- "children": [
- {
- "isClone": false,
- "noteId": "wqzzSbAEUFLQ",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "B2ao3EopB5yW",
- "wqzzSbAEUFLQ"
- ],
- "title": "HR",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "HR.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "9CA1t6Z3JTOT",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "B2ao3EopB5yW",
- "9CA1t6Z3JTOT"
- ],
- "title": "Processes",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": true,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Processes.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "RpJ3H6CeslUU",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "B2ao3EopB5yW",
- "RpJ3H6CeslUU"
- ],
- "title": "Projects",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Projects.html",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "Zl2So0VN2bPq",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "Zl2So0VN2bPq"
- ],
- "title": "Steel Blue",
- "notePosition": 160,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "text/css",
- "attributes": [
- {
- "type": "label",
- "name": "appTheme",
- "value": "steel-blue",
- "isInheritable": false,
- "position": 0
- }
- ],
- "dataFileName": "Steel Blue.css",
- "attachments": [],
- "dirFileName": "Steel Blue",
- "children": [
- {
- "isClone": false,
- "noteId": "WJKLFxyflwt3",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "Zl2So0VN2bPq",
- "WJKLFxyflwt3"
- ],
- "title": "eb-garamond-v9-latin-regular.woff2",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "file",
- "mime": "application/octet-stream",
- "attributes": [
- {
- "type": "label",
- "name": "originalFileName",
- "value": "eb-garamond-v9-latin-regular.woff2",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "fileSize",
- "value": "27608",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "customResourceProvider",
- "value": "fonts/garamond.woff2",
- "isInheritable": false,
- "position": 30
- }
- ],
- "dataFileName": "eb-garamond-v9-latin-reg.woff2",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "RHRrVvtDRfhT",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "Zl2So0VN2bPq",
- "RHRrVvtDRfhT"
- ],
- "title": "raleway-v12-latin-regular.woff2",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "file",
- "mime": "application/octet-stream",
- "attributes": [
- {
- "type": "label",
- "name": "originalFileName",
- "value": "raleway-v12-latin-regular.woff2",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "fileSize",
- "value": "20444",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "customResourceProvider",
- "value": "fonts/raleway.woff2",
- "isInheritable": false,
- "position": 30
- }
- ],
- "dataFileName": "raleway-v12-latin-regula.woff2",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "KZVWidxicAfn",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn"
- ],
- "title": "Scripting examples",
- "notePosition": 350,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bxl-javascript",
- "isInheritable": false,
- "position": 1
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "Scripting examples",
- "children": [
- {
- "isClone": false,
- "noteId": "JwXAb88VP2wn",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn"
- ],
- "title": "Task manager",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-task",
- "isInheritable": false,
- "position": 10
- }
- ],
- "format": "html",
- "dataFileName": "Task manager.html",
- "attachments": [],
- "dirFileName": "Task manager",
- "children": [
- {
- "isClone": false,
- "noteId": "JgjjgA2mpWHd",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "JgjjgA2mpWHd"
- ],
- "title": "Locations",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": true,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "taskLocationRoot",
- "value": "",
- "isInheritable": false,
- "position": 0
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-map",
- "isInheritable": false,
- "position": 1
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "Locations",
- "children": [
- {
- "isClone": false,
- "noteId": "guVfSfQsVNnB",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "JgjjgA2mpWHd",
- "guVfSfQsVNnB"
- ],
- "title": "gym",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "taskLocationNote",
- "value": "gym",
- "isInheritable": false,
- "position": 1
- }
- ],
- "format": "html",
- "dataFileName": "gym.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "X1PGaxXd2GjI",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "JgjjgA2mpWHd",
- "X1PGaxXd2GjI"
- ],
- "title": "work",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "taskLocationNote",
- "value": "work",
- "isInheritable": false,
- "position": 1
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "work",
- "children": [
- {
- "isClone": false,
- "noteId": "1yhbjW4nlr4l",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "JgjjgA2mpWHd",
- "X1PGaxXd2GjI",
- "1yhbjW4nlr4l"
- ],
- "title": "Send invites for christmas party",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "task",
- "value": "",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "relation",
- "name": "template",
- "value": "s0jjoiuap4Ic",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "location",
- "value": "work",
- "isInheritable": false,
- "position": 30
- },
- {
- "type": "label",
- "name": "cssClass",
- "value": "todo",
- "isInheritable": false,
- "position": 40
- },
- {
- "type": "label",
- "name": "cssClass",
- "value": "todo",
- "isInheritable": false,
- "position": 50
- },
- {
- "type": "label",
- "name": "todoDate",
- "value": "2021-12-18",
- "isInheritable": false,
- "position": 60
- }
- ],
- "format": "html",
- "dataFileName": "Send invites for christmas par.html",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "8vUXW1ycnGte",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "JgjjgA2mpWHd",
- "8vUXW1ycnGte"
- ],
- "title": "tesco",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "taskLocationNote",
- "value": "tesco",
- "isInheritable": false,
- "position": 1
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "tesco",
- "children": [
- {
- "isClone": false,
- "noteId": "jjeJHzHpi6ur",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "JgjjgA2mpWHd",
- "8vUXW1ycnGte",
- "jjeJHzHpi6ur"
- ],
- "title": "Buy milk",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "task",
- "value": "",
- "isInheritable": false,
- "position": 1
- },
- {
- "type": "relation",
- "name": "template",
- "value": "s0jjoiuap4Ic",
- "isInheritable": false,
- "position": 2
- },
- {
- "type": "label",
- "name": "location",
- "value": "tesco",
- "isInheritable": false,
- "position": 3
- },
- {
- "type": "label",
- "name": "cssClass",
- "value": "todo",
- "isInheritable": false,
- "position": 4
- },
- {
- "type": "label",
- "name": "cssClass",
- "value": "todo",
- "isInheritable": false,
- "position": 4
- },
- {
- "type": "label",
- "name": "tag",
- "value": "groceries",
- "isInheritable": false,
- "position": 5
- },
- {
- "type": "label",
- "name": "tag",
- "value": "shopping",
- "isInheritable": false,
- "position": 7
- },
- {
- "type": "label",
- "name": "todoDate",
- "value": "2021-12-24",
- "isInheritable": false,
- "position": 6
- }
- ],
- "format": "html",
- "dataFileName": "Buy milk.html",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "5vuniBMFTH72",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "JgjjgA2mpWHd",
- "5vuniBMFTH72"
- ],
- "title": "mall",
- "notePosition": 30,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "taskLocationNote",
- "value": "mall",
- "isInheritable": false,
- "position": 1
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "mall",
- "children": [
- {
- "isClone": false,
- "noteId": "Se4NJBgDXgDP",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "JgjjgA2mpWHd",
- "5vuniBMFTH72",
- "Se4NJBgDXgDP"
- ],
- "title": "Buy some book for Bob",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "task",
- "value": "",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "relation",
- "name": "template",
- "value": "s0jjoiuap4Ic",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "location",
- "value": "mall",
- "isInheritable": false,
- "position": 30
- },
- {
- "type": "label",
- "name": "cssClass",
- "value": "todo",
- "isInheritable": false,
- "position": 40
- },
- {
- "type": "label",
- "name": "cssClass",
- "value": "todo",
- "isInheritable": false,
- "position": 50
- },
- {
- "type": "label",
- "name": "tag",
- "value": "christmas",
- "isInheritable": false,
- "position": 60
- },
- {
- "type": "label",
- "name": "todoDate",
- "value": "",
- "isInheritable": false,
- "position": 70
- },
- {
- "type": "label",
- "name": "tag",
- "value": "shopping",
- "isInheritable": false,
- "position": 80
- }
- ],
- "format": "html",
- "dataFileName": "Buy some book for Bob.html",
- "attachments": [],
- "dirFileName": "Buy some book for Bob",
- "children": [
- {
- "isClone": false,
- "noteId": "FFfZ8j7dbla2",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "JgjjgA2mpWHd",
- "5vuniBMFTH72",
- "Se4NJBgDXgDP",
- "FFfZ8j7dbla2"
- ],
- "title": "Maybe Black Swan?",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [],
- "format": "html",
- "dataFileName": "Maybe Black Swan.html",
- "attachments": []
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "XgOo7la4Zhaa",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "XgOo7la4Zhaa"
- ],
- "title": "Done",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "taskDoneRoot",
- "value": "",
- "isInheritable": false,
- "position": 0
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-check-square",
- "isInheritable": false,
- "position": 1
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "Done",
- "children": [
- {
- "isClone": false,
- "noteId": "9KSQ8DZQlXM9",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "XgOo7la4Zhaa",
- "9KSQ8DZQlXM9"
- ],
- "title": "Buy a board game for Alice",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "task",
- "value": "",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "relation",
- "name": "template",
- "value": "s0jjoiuap4Ic",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "location",
- "value": "mall",
- "isInheritable": false,
- "position": 30
- },
- {
- "type": "label",
- "name": "cssClass",
- "value": "done",
- "isInheritable": false,
- "position": 40
- },
- {
- "type": "label",
- "name": "tag",
- "value": "christmas",
- "isInheritable": false,
- "position": 50
- },
- {
- "type": "label",
- "name": "tag",
- "value": "shopping",
- "isInheritable": false,
- "position": 60
- },
- {
- "type": "label",
- "name": "todoDate",
- "value": "2021-12-20",
- "isInheritable": false,
- "position": 70
- },
- {
- "type": "label",
- "name": "doneDate",
- "value": "2021-12-24",
- "isInheritable": false,
- "position": 80
- }
- ],
- "format": "html",
- "dataFileName": "Buy a board game for Alice.html",
- "attachments": [
- {
- "attachmentId": "hTaZjHj3H3Pc",
- "title": "codenames.jpg",
- "role": "image",
- "mime": "image/jpg",
- "position": 10,
- "dataFileName": "Buy a board game for Alice.jpg"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "32RmtcG0KwdZ",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "XgOo7la4Zhaa",
- "32RmtcG0KwdZ"
- ],
- "title": "Dentist appointment",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "task",
- "value": "",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "relation",
- "name": "template",
- "value": "s0jjoiuap4Ic",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "tag",
- "value": "health",
- "isInheritable": false,
- "position": 30
- },
- {
- "type": "label",
- "name": "cssClass",
- "value": "done",
- "isInheritable": false,
- "position": 40
- },
- {
- "type": "label",
- "name": "todoDate",
- "value": "2021-12-19",
- "isInheritable": false,
- "position": 50
- },
- {
- "type": "label",
- "name": "doneDate",
- "value": "2021-12-19",
- "isInheritable": false,
- "position": 60
- }
- ],
- "format": "html",
- "dataFileName": "Dentist appointment.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "GhLqwhaJ0EC2",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "XgOo7la4Zhaa",
- "GhLqwhaJ0EC2"
- ],
- "title": "Get a gym membership",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "task",
- "value": "",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "relation",
- "name": "template",
- "value": "s0jjoiuap4Ic",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "location",
- "value": "gym",
- "isInheritable": false,
- "position": 30
- },
- {
- "type": "label",
- "name": "cssClass",
- "value": "done",
- "isInheritable": false,
- "position": 40
- },
- {
- "type": "label",
- "name": "todoDate",
- "value": "2021-12-28",
- "isInheritable": false,
- "position": 50
- },
- {
- "type": "label",
- "name": "doneDate",
- "value": "2021-12-30",
- "isInheritable": false,
- "position": 60
- }
- ],
- "format": "html",
- "dataFileName": "Get a gym membership.html",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "pQFBLIQkRk7e",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "pQFBLIQkRk7e"
- ],
- "title": "TODO",
- "notePosition": 30,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "taskTodoRoot",
- "value": "",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "child:task",
- "value": "",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "relation",
- "name": "child:template",
- "value": "s0jjoiuap4Ic",
- "isInheritable": false,
- "position": 30
- },
- {
- "type": "label",
- "name": "child:cssClass",
- "value": "todo",
- "isInheritable": false,
- "position": 40
- },
- {
- "type": "label",
- "name": "bookmarkFolder",
- "value": "",
- "isInheritable": false,
- "position": 50
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bxs-plane-take-off",
- "isInheritable": false,
- "position": 51
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "TODO",
- "children": [
- {
- "isClone": true,
- "noteId": "jjeJHzHpi6ur",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "pQFBLIQkRk7e",
- "jjeJHzHpi6ur"
- ],
- "title": "Buy milk",
- "prefix": null,
- "dataFileName": "Buy milk.clone.html",
- "type": "text",
- "format": "html"
- },
- {
- "isClone": true,
- "noteId": "Se4NJBgDXgDP",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "pQFBLIQkRk7e",
- "Se4NJBgDXgDP"
- ],
- "title": "Buy some book for Bob",
- "prefix": null,
- "dataFileName": "Buy some book for Bob.clone.html",
- "type": "text",
- "format": "html"
- },
- {
- "isClone": true,
- "noteId": "1yhbjW4nlr4l",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "pQFBLIQkRk7e",
- "1yhbjW4nlr4l"
- ],
- "title": "Send invites for christmas party",
- "prefix": null,
- "dataFileName": "Send invites for christmas party.clone.html",
- "type": "text",
- "format": "html"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "zzbGZzlK1UnU",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "zzbGZzlK1UnU"
- ],
- "title": "Implementation",
- "notePosition": 40,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-code-alt",
- "isInheritable": false,
- "position": 1
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "Implementation",
- "children": [
- {
- "isClone": false,
- "noteId": "o6dIpDqmk9Mk",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "zzbGZzlK1UnU",
- "o6dIpDqmk9Mk"
- ],
- "title": "attribute changed",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "application/javascript;env=backend",
- "attributes": [],
- "dataFileName": "attribute changed.js",
- "attachments": [],
- "dirFileName": "attribute changed",
- "children": [
- {
- "isClone": false,
- "noteId": "AkYrzb1oFJLM",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "zzbGZzlK1UnU",
- "o6dIpDqmk9Mk",
- "AkYrzb1oFJLM"
- ],
- "title": "reconcileAssignments",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "application/javascript;env=backend",
- "attributes": [],
- "dataFileName": "reconcileAssignments.js",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "dRHJjUpBEMHl",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "zzbGZzlK1UnU",
- "dRHJjUpBEMHl"
- ],
- "title": "CSS",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "text/css",
- "attributes": [
- {
- "type": "label",
- "name": "appCss",
- "value": "",
- "isInheritable": false,
- "position": 0
- }
- ],
- "dataFileName": "CSS.css",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "s0jjoiuap4Ic",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "zzbGZzlK1UnU",
- "s0jjoiuap4Ic"
- ],
- "title": "task template",
- "notePosition": 30,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "label:location",
- "value": "promoted,text,single",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "cssClass",
- "value": "todo",
- "isInheritable": false,
- "position": 30
- },
- {
- "type": "label",
- "name": "label:tag",
- "value": "promoted,text,multi",
- "isInheritable": false,
- "position": 40
- },
- {
- "type": "label",
- "name": "label:todoDate",
- "value": "promoted,date,single",
- "isInheritable": false,
- "position": 50
- },
- {
- "type": "label",
- "name": "label:doneDate",
- "value": "promoted,date,single",
- "isInheritable": false,
- "position": 60
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-task",
- "isInheritable": false,
- "position": 70
- },
- {
- "type": "label",
- "name": "task",
- "value": "",
- "isInheritable": false,
- "position": 80
- },
- {
- "type": "relation",
- "name": "runOnAttributeChange",
- "value": "o6dIpDqmk9Mk",
- "isInheritable": false,
- "position": 10
- }
- ],
- "format": "html",
- "dataFileName": "task template.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "B8r8cR1CgOXC",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "zzbGZzlK1UnU",
- "B8r8cR1CgOXC"
- ],
- "title": "createNewTask",
- "notePosition": 40,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "application/javascript;env=frontend",
- "attributes": [],
- "dataFileName": "createNewTask.js",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "6wvo0XkUPMIC",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "6wvo0XkUPMIC"
- ],
- "title": "Tags",
- "notePosition": 50,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "taskTagRoot",
- "value": "",
- "isInheritable": false,
- "position": 0
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-purchase-tag",
- "isInheritable": false,
- "position": 1
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "Tags",
- "children": [
- {
- "isClone": false,
- "noteId": "vqXaew913RYE",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "6wvo0XkUPMIC",
- "vqXaew913RYE"
- ],
- "title": "health",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "taskTagNote",
- "value": "health",
- "isInheritable": false,
- "position": 1
- }
- ],
- "format": "html",
- "dataFileName": "health.html",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "Zz5qaexattwb",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "6wvo0XkUPMIC",
- "Zz5qaexattwb"
- ],
- "title": "shopping",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "taskTagNote",
- "value": "shopping",
- "isInheritable": false,
- "position": 1
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "shopping",
- "children": [
- {
- "isClone": true,
- "noteId": "jjeJHzHpi6ur",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "6wvo0XkUPMIC",
- "Zz5qaexattwb",
- "jjeJHzHpi6ur"
- ],
- "title": "Buy milk",
- "prefix": null,
- "dataFileName": "Buy milk.clone.html",
- "type": "text",
- "format": "html"
- },
- {
- "isClone": true,
- "noteId": "Se4NJBgDXgDP",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "6wvo0XkUPMIC",
- "Zz5qaexattwb",
- "Se4NJBgDXgDP"
- ],
- "title": "Buy some book for Bob",
- "prefix": null,
- "dataFileName": "Buy some book for Bob.clone.html",
- "type": "text",
- "format": "html"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "Rn1zVLQyfH3M",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "6wvo0XkUPMIC",
- "Rn1zVLQyfH3M"
- ],
- "title": "groceries",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "taskTagNote",
- "value": "groceries",
- "isInheritable": false,
- "position": 1
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "groceries",
- "children": [
- {
- "isClone": true,
- "noteId": "jjeJHzHpi6ur",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "6wvo0XkUPMIC",
- "Rn1zVLQyfH3M",
- "jjeJHzHpi6ur"
- ],
- "title": "Buy milk",
- "prefix": null,
- "dataFileName": "Buy milk.clone.html",
- "type": "text",
- "format": "html"
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "YFgSaj76EAlV",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "6wvo0XkUPMIC",
- "YFgSaj76EAlV"
- ],
- "title": "christmas",
- "notePosition": 30,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "taskTagNote",
- "value": "christmas",
- "isInheritable": false,
- "position": 1
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "christmas",
- "children": [
- {
- "isClone": true,
- "noteId": "Se4NJBgDXgDP",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "6wvo0XkUPMIC",
- "YFgSaj76EAlV",
- "Se4NJBgDXgDP"
- ],
- "title": "Buy some book for Bob",
- "prefix": null,
- "dataFileName": "Buy some book for Bob.clone.html",
- "type": "text",
- "format": "html"
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "REYFb3PQQ7Uu",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "JwXAb88VP2wn",
- "REYFb3PQQ7Uu"
- ],
- "title": "Create Launcher",
- "notePosition": 60,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "application/javascript;env=backend",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-sidebar",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "relation",
- "name": "createNewTask",
- "value": "B8r8cR1CgOXC",
- "isInheritable": false,
- "position": 20
- },
- {
- "type": "label",
- "name": "executeButton",
- "value": "Create Launcher",
- "isInheritable": false,
- "position": 30
- },
- {
- "type": "label",
- "name": "executeDescription",
- "value": "This script creates a launcher on the left side bar which can be used to quickly create a new task",
- "isInheritable": false,
- "position": 40
- }
- ],
- "dataFileName": "Create Launcher.js",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "mJJ4HfInuU8m",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "mJJ4HfInuU8m"
- ],
- "title": "Word count widget",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "application/javascript;env=frontend",
- "attributes": [
- {
- "type": "label",
- "name": "widget",
- "value": "",
- "isInheritable": false,
- "position": 10
- }
- ],
- "dataFileName": "Word count widget.js",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "AoV6PijRs3ZU",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "AoV6PijRs3ZU"
- ],
- "title": "Weight Tracker",
- "notePosition": 40,
- "prefix": null,
- "isExpanded": false,
- "type": "render",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "hideChildrenOverview",
- "value": "",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "bookmarked",
- "value": "",
- "isInheritable": false,
- "position": 30
- },
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-tachometer",
- "isInheritable": false,
- "position": 40
- },
- {
- "type": "relation",
- "name": "renderNote",
- "value": "A32WDOAEaJ6M",
- "isInheritable": false,
- "position": 20
- }
- ],
- "attachments": [],
- "dirFileName": "Weight Tracker",
- "children": [
- {
- "isClone": false,
- "noteId": "A32WDOAEaJ6M",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "AoV6PijRs3ZU",
- "A32WDOAEaJ6M"
- ],
- "title": "Implementation",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "text/html",
- "attributes": [],
- "dataFileName": "Implementation.html",
- "attachments": [],
- "dirFileName": "Implementation",
- "children": [
- {
- "isClone": false,
- "noteId": "tq1IEPNTcEwE",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "AoV6PijRs3ZU",
- "A32WDOAEaJ6M",
- "tq1IEPNTcEwE"
- ],
- "title": "JS code",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "application/javascript;env=frontend",
- "attributes": [],
- "dataFileName": "JS code.js",
- "attachments": [],
- "dirFileName": "JS code",
- "children": [
- {
- "isClone": false,
- "noteId": "piyimQhwfcy5",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "AoV6PijRs3ZU",
- "A32WDOAEaJ6M",
- "tq1IEPNTcEwE",
- "piyimQhwfcy5"
- ],
- "title": "chart.js",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "file",
- "mime": "text/javascript",
- "attributes": [],
- "dataFileName": "chart.js",
- "attachments": []
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "xRQuuwkaobBM",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM"
- ],
- "title": "Statistics",
- "notePosition": 60,
- "prefix": null,
- "isExpanded": false,
- "type": "book",
- "mime": "",
- "attributes": [
- {
- "type": "label",
- "name": "bookZoomLevel",
- "value": "2",
- "isInheritable": false,
- "position": 10
- }
- ],
- "attachments": [],
- "dirFileName": "Statistics",
- "children": [
- {
- "isClone": false,
- "noteId": "GXUcReLM6dSe",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "GXUcReLM6dSe"
- ],
- "title": "Attribute count",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "render",
- "mime": "",
- "attributes": [
- {
- "type": "relation",
- "name": "renderNote",
- "value": "oLPbgCo7djD7",
- "isInheritable": false,
- "position": 10
- }
- ],
- "attachments": [],
- "dirFileName": "Attribute count",
- "children": [
- {
- "isClone": false,
- "noteId": "oLPbgCo7djD7",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "GXUcReLM6dSe",
- "oLPbgCo7djD7"
- ],
- "title": "template",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "text/html",
- "attributes": [],
- "dataFileName": "template.html",
- "attachments": [],
- "dirFileName": "template",
- "children": [
- {
- "isClone": false,
- "noteId": "AlL9eFopYuHg",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "GXUcReLM6dSe",
- "oLPbgCo7djD7",
- "AlL9eFopYuHg"
- ],
- "title": "js",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "application/javascript;env=frontend",
- "attributes": [],
- "dataFileName": "js.js",
- "attachments": [],
- "dirFileName": "js",
- "children": [
- {
- "isClone": false,
- "noteId": "9GZB2MeW51xv",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "GXUcReLM6dSe",
- "oLPbgCo7djD7",
- "AlL9eFopYuHg",
- "9GZB2MeW51xv"
- ],
- "title": "renderPieChart",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "application/javascript;env=frontend",
- "attributes": [],
- "dataFileName": "renderPieChart.js",
- "attachments": [],
- "dirFileName": "renderPieChart",
- "children": [
- {
- "isClone": false,
- "noteId": "3jaioienOLTR",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "GXUcReLM6dSe",
- "oLPbgCo7djD7",
- "AlL9eFopYuHg",
- "9GZB2MeW51xv",
- "3jaioienOLTR"
- ],
- "title": "chartjs-plugin-datalabels.min.js",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "file",
- "mime": "text/javascript",
- "attributes": [
- {
- "type": "label",
- "name": "originalFileName",
- "value": "chartjs-plugin-datalabels.min.js",
- "isInheritable": false,
- "position": 1
- }
- ],
- "dataFileName": "chartjs-plugin-datalabe.min.js",
- "attachments": []
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "gp03dlXCFkJf",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "GXUcReLM6dSe",
- "oLPbgCo7djD7",
- "AlL9eFopYuHg",
- "gp03dlXCFkJf"
- ],
- "title": "renderTable",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "application/javascript;env=frontend",
- "attributes": [],
- "dataFileName": "renderTable.js",
- "attachments": []
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "SsesNR9Q4LMV",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "SsesNR9Q4LMV"
- ],
- "title": "Largest notes",
- "notePosition": 20,
- "prefix": null,
- "isExpanded": false,
- "type": "render",
- "mime": "",
- "attributes": [
- {
- "type": "relation",
- "name": "renderNote",
- "value": "GYJZOEJXBEJ1",
- "isInheritable": false,
- "position": 10
- }
- ],
- "attachments": [],
- "dirFileName": "Largest notes",
- "children": [
- {
- "isClone": false,
- "noteId": "GYJZOEJXBEJ1",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "SsesNR9Q4LMV",
- "GYJZOEJXBEJ1"
- ],
- "title": "template",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "text/html",
- "attributes": [],
- "dataFileName": "template.html",
- "attachments": [],
- "dirFileName": "template",
- "children": [
- {
- "isClone": false,
- "noteId": "BcqIQhG3eQbo",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "SsesNR9Q4LMV",
- "GYJZOEJXBEJ1",
- "BcqIQhG3eQbo"
- ],
- "title": "js",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "application/javascript;env=frontend",
- "attributes": [],
- "dataFileName": "js.js",
- "attachments": []
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "LpuRqz4YOvPH",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "LpuRqz4YOvPH"
- ],
- "title": "Most edited notes",
- "notePosition": 30,
- "prefix": null,
- "isExpanded": false,
- "type": "render",
- "mime": "",
- "attributes": [
- {
- "type": "relation",
- "name": "renderNote",
- "value": "RpSdzJ8YtGCh",
- "isInheritable": false,
- "position": 10
- }
- ],
- "attachments": [],
- "dirFileName": "Most edited notes",
- "children": [
- {
- "isClone": false,
- "noteId": "RpSdzJ8YtGCh",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "LpuRqz4YOvPH",
- "RpSdzJ8YtGCh"
- ],
- "title": "template",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "text/html",
- "attributes": [],
- "dataFileName": "template.html",
- "attachments": [],
- "dirFileName": "template",
- "children": [
- {
- "isClone": false,
- "noteId": "xANbepYCI3MM",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "LpuRqz4YOvPH",
- "RpSdzJ8YtGCh",
- "xANbepYCI3MM"
- ],
- "title": "js",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "application/javascript;env=frontend",
- "attributes": [],
- "dataFileName": "js.js",
- "attachments": []
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "3Pqm2PAdIDoR",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "3Pqm2PAdIDoR"
- ],
- "title": "Most linked notes",
- "notePosition": 40,
- "prefix": null,
- "isExpanded": false,
- "type": "render",
- "mime": "",
- "attributes": [
- {
- "type": "relation",
- "name": "renderNote",
- "value": "A9AEOknGTXH7",
- "isInheritable": false,
- "position": 10
- }
- ],
- "attachments": [],
- "dirFileName": "Most linked notes",
- "children": [
- {
- "isClone": false,
- "noteId": "A9AEOknGTXH7",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "3Pqm2PAdIDoR",
- "A9AEOknGTXH7"
- ],
- "title": "template",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "text/html",
- "attributes": [],
- "dataFileName": "template.html",
- "attachments": [],
- "dirFileName": "template",
- "children": [
- {
- "isClone": false,
- "noteId": "qPHo4bcTNQRc",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "3Pqm2PAdIDoR",
- "A9AEOknGTXH7",
- "qPHo4bcTNQRc"
- ],
- "title": "js",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "application/javascript;env=frontend",
- "attributes": [],
- "dataFileName": "js.js",
- "attachments": []
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "zaJv5dTikOST",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "zaJv5dTikOST"
- ],
- "title": "Note type count",
- "notePosition": 50,
- "prefix": null,
- "isExpanded": false,
- "type": "render",
- "mime": "",
- "attributes": [
- {
- "type": "relation",
- "name": "renderNote",
- "value": "pT0x9fitYGkt",
- "isInheritable": false,
- "position": 10
- }
- ],
- "attachments": [],
- "dirFileName": "Note type count",
- "children": [
- {
- "isClone": false,
- "noteId": "pT0x9fitYGkt",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "zaJv5dTikOST",
- "pT0x9fitYGkt"
- ],
- "title": "template",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "text/html",
- "attributes": [],
- "dataFileName": "template.html",
- "attachments": [],
- "dirFileName": "template",
- "children": [
- {
- "isClone": false,
- "noteId": "svjnZ2JM3B3M",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "zaJv5dTikOST",
- "pT0x9fitYGkt",
- "svjnZ2JM3B3M"
- ],
- "title": "js",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "application/javascript;env=frontend",
- "attributes": [],
- "dataFileName": "js.js",
- "attachments": [],
- "dirFileName": "js",
- "children": [
- {
- "isClone": false,
- "noteId": "xwOPidcKMYFp",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "zaJv5dTikOST",
- "pT0x9fitYGkt",
- "svjnZ2JM3B3M",
- "xwOPidcKMYFp"
- ],
- "title": "renderTable",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "application/javascript;env=frontend",
- "attributes": [],
- "dataFileName": "renderTable.js",
- "attachments": []
- },
- {
- "isClone": true,
- "noteId": "9GZB2MeW51xv",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "zaJv5dTikOST",
- "pT0x9fitYGkt",
- "svjnZ2JM3B3M",
- "9GZB2MeW51xv"
- ],
- "title": "renderPieChart",
- "prefix": null,
- "dataFileName": "renderPieChart.clone.html",
- "type": "text",
- "format": "html"
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "60hC06fQDFbz",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "60hC06fQDFbz"
- ],
- "title": "Most cloned notes",
- "notePosition": 60,
- "prefix": null,
- "isExpanded": false,
- "type": "render",
- "mime": "",
- "attributes": [
- {
- "type": "relation",
- "name": "renderNote",
- "value": "PpBDHBshEH8H",
- "isInheritable": false,
- "position": 10
- }
- ],
- "attachments": [],
- "dirFileName": "Most cloned notes",
- "children": [
- {
- "isClone": false,
- "noteId": "PpBDHBshEH8H",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "60hC06fQDFbz",
- "PpBDHBshEH8H"
- ],
- "title": "template",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "text/html",
- "attributes": [],
- "dataFileName": "template.html",
- "attachments": [],
- "dirFileName": "template",
- "children": [
- {
- "isClone": false,
- "noteId": "kPuAKFW2XFXq",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "xRQuuwkaobBM",
- "60hC06fQDFbz",
- "PpBDHBshEH8H",
- "kPuAKFW2XFXq"
- ],
- "title": "js",
- "notePosition": 0,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "application/javascript;env=frontend",
- "attributes": [],
- "dataFileName": "js.js",
- "attachments": []
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "sh460UeSCkDG",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "sh460UeSCkDG"
- ],
- "title": "Custom request handler",
- "notePosition": 90,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "application/javascript;env=backend",
- "attributes": [
- {
- "type": "relation",
- "name": "targetNote",
- "value": "Ys8DWdyfaZcf",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "customRequestHandler",
- "value": "create-note",
- "isInheritable": false,
- "position": 20
- }
- ],
- "dataFileName": "Custom request handler.js",
- "attachments": []
- },
- {
- "isClone": false,
- "noteId": "DAybX9h5jOoG",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "DAybX9h5jOoG"
- ],
- "title": "Render note with JSX",
- "notePosition": 100,
- "prefix": null,
- "isExpanded": false,
- "type": "render",
- "mime": "",
- "attributes": [
- {
- "type": "label",
- "name": "widget",
- "value": "",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "relation",
- "name": "renderNote",
- "value": "xzqr5J1V4YwY",
- "isInheritable": false,
- "position": 20
- }
- ],
- "attachments": [],
- "dirFileName": "Render note with JSX",
- "children": [
- {
- "isClone": false,
- "noteId": "xzqr5J1V4YwY",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "DAybX9h5jOoG",
- "xzqr5J1V4YwY"
- ],
- "title": "JSX",
- "notePosition": 12,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "text/jsx",
- "attributes": [],
- "dataFileName": "JSX.jsx",
- "attachments": [],
- "dirFileName": "JSX",
- "children": [
- {
- "isClone": false,
- "noteId": "mqDw6BebfE58",
- "notePath": [
- "root",
- "rvaX6hEaQlmk",
- "KZVWidxicAfn",
- "DAybX9h5jOoG",
- "xzqr5J1V4YwY",
- "mqDw6BebfE58"
- ],
- "title": "FormElements",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "code",
- "mime": "text/jsx",
- "attributes": [],
- "dataFileName": "FormElements.jsx",
- "attachments": []
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "isClone": false,
- "noteId": "fhNlr1V1o3d8",
- "notePath": [
- "root",
- "fhNlr1V1o3d8"
- ],
- "title": "Miscellaneous",
- "notePosition": 30,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-dots-horizontal-rounded",
- "isInheritable": false,
- "position": 10
- }
- ],
- "format": "html",
- "attachments": [],
- "dirFileName": "Miscellaneous",
- "children": [
- {
- "isClone": false,
- "noteId": "bRQvb9VCkc3t",
- "notePath": [
- "root",
- "fhNlr1V1o3d8",
- "bRQvb9VCkc3t"
- ],
- "title": "Day Note Template",
- "notePosition": 10,
- "prefix": null,
- "isExpanded": false,
- "type": "text",
- "mime": "text/html",
- "attributes": [
- {
- "type": "label",
- "name": "iconClass",
- "value": "bx bx-notepad",
- "isInheritable": false,
- "position": 10
- },
- {
- "type": "label",
- "name": "excludeFromNoteMap",
- "value": "",
- "isInheritable": false,
- "position": 20
- }
- ],
- "format": "html",
- "dataFileName": "Day Note Template.html",
- "attachments": []
- }
- ]
- }
- ]
- },
- {
- "noImport": true,
- "dataFileName": "navigation.html"
- },
- {
- "noImport": true,
- "dataFileName": "index.html"
- },
- {
- "noImport": true,
- "dataFileName": "style.css"
- }
- ]
+ "formatVersion": 2,
+ "appVersion": "0.102.2",
+ "files": [
+ {
+ "isClone": false,
+ "noteId": "root",
+ "notePath": [
+ "root"
+ ],
+ "title": "root",
+ "notePosition": 1,
+ "prefix": null,
+ "isExpanded": true,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "root",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "uXI8DRRYXWKs",
+ "notePath": [
+ "root",
+ "uXI8DRRYXWKs"
+ ],
+ "title": "Journal",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "book",
+ "mime": "",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "calendarRoot",
+ "value": "",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-calendar",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "viewType",
+ "value": "calendar",
+ "isInheritable": false,
+ "position": 30
+ },
+ {
+ "type": "label",
+ "name": "calendar:view",
+ "value": "dayGridMonth",
+ "isInheritable": false,
+ "position": 40
+ },
+ {
+ "type": "relation",
+ "name": "dateTemplate",
+ "value": "bRQvb9VCkc3t",
+ "isInheritable": false,
+ "position": 50
+ }
+ ],
+ "dataFileName": "Journal.dat",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "rvaX6hEaQlmk",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk"
+ ],
+ "title": "Trilium Demo",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": true,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "internalLink",
+ "value": "xY1FldcqIlaS",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "relation",
+ "name": "internalLink",
+ "value": "Th0SHTjziC8R",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "relation",
+ "name": "internalLink",
+ "value": "1afuYh5pfoEP",
+ "isInheritable": false,
+ "position": 30
+ },
+ {
+ "type": "relation",
+ "name": "internalLink",
+ "value": "FtCt1LKirRGs",
+ "isInheritable": false,
+ "position": 40
+ },
+ {
+ "type": "relation",
+ "name": "internalLink",
+ "value": "uppxiNYbjvGw",
+ "isInheritable": false,
+ "position": 50
+ },
+ {
+ "type": "relation",
+ "name": "internalLink",
+ "value": "Q3ve69mXIaMY",
+ "isInheritable": false,
+ "position": 60
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-book-reader",
+ "isInheritable": false,
+ "position": 70
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Trilium Demo.html",
+ "attachments": [
+ {
+ "attachmentId": "49LZY5VsPxHQ",
+ "title": "icon-color.svg",
+ "role": "image",
+ "mime": "image/svg+xml",
+ "position": 10,
+ "dataFileName": "Trilium Demo_icon-color.svg"
+ }
+ ],
+ "dirFileName": "Trilium Demo",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "Ys8DWdyfaZcf",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "Ys8DWdyfaZcf"
+ ],
+ "title": "Inbox",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bxs-inbox",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Inbox.html",
+ "attachments": [],
+ "dirFileName": "Inbox",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "pazSSdaZVwtg",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "Ys8DWdyfaZcf",
+ "pazSSdaZVwtg"
+ ],
+ "title": "Grocery list for today",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Grocery list for today.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "dqqETl7LjFV7",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "Ys8DWdyfaZcf",
+ "dqqETl7LjFV7"
+ ],
+ "title": "Book to read",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Book to read.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "A6cJSHsdETV2",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "Ys8DWdyfaZcf",
+ "A6cJSHsdETV2"
+ ],
+ "title": "The Last Question",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "internalLink",
+ "value": "_help_nBAXQFj20hS1",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "format": "html",
+ "dataFileName": "The Last Question.html",
+ "attachments": [],
+ "dirFileName": "The Last Question",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "VsFbpoySMCE3",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "Ys8DWdyfaZcf",
+ "A6cJSHsdETV2",
+ "VsFbpoySMCE3"
+ ],
+ "title": "The Last Question by Issac Asimov.pdf",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "file",
+ "mime": "application/pdf",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "originalFileName",
+ "value": "the_last_question_-_issac_asimov.pdf",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "dataFileName": "The Last Question by Issac.pdf",
+ "attachments": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "xY1FldcqIlaS",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "xY1FldcqIlaS"
+ ],
+ "title": "Formatting examples",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "book",
+ "mime": "",
+ "attributes": [],
+ "attachments": [],
+ "dirFileName": "Formatting examples",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "Th0SHTjziC8R",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "xY1FldcqIlaS",
+ "Th0SHTjziC8R"
+ ],
+ "title": "School schedule",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-table",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "format": "html",
+ "dataFileName": "School schedule.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "1afuYh5pfoEP",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "xY1FldcqIlaS",
+ "1afuYh5pfoEP"
+ ],
+ "title": "Checkbox lists",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-check",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Checkbox lists.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "FtCt1LKirRGs",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "xY1FldcqIlaS",
+ "FtCt1LKirRGs"
+ ],
+ "title": "Highlighting",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bxs-pencil",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Highlighting.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "uppxiNYbjvGw",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "xY1FldcqIlaS",
+ "uppxiNYbjvGw"
+ ],
+ "title": "Code blocks",
+ "notePosition": 30,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "internalLink",
+ "value": "sh460UeSCkDG",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-code-alt",
+ "isInheritable": false,
+ "position": 2
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Code blocks.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "Q3ve69mXIaMY",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "xY1FldcqIlaS",
+ "Q3ve69mXIaMY"
+ ],
+ "title": "Math",
+ "notePosition": 40,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-calculator",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Math.html",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "zoH8XiuiEJSV",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV"
+ ],
+ "title": "Journal",
+ "notePosition": 30,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "sorted",
+ "value": "",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-calendar",
+ "isInheritable": false,
+ "position": 30
+ },
+ {
+ "type": "relation",
+ "name": "dateTemplate",
+ "value": "kr6HIBBuXRwm",
+ "isInheritable": false,
+ "position": 20
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Journal.html",
+ "attachments": [],
+ "dirFileName": "Journal",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "b3kSYO90QeET",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET"
+ ],
+ "title": "2021",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "sorted",
+ "value": "",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "yearNote",
+ "value": "2021",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "relation",
+ "name": "child:child:template",
+ "value": "kr6HIBBuXRwm",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "2021",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "iYU0SglOv14g",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "iYU0SglOv14g"
+ ],
+ "title": "11 - November",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "sorted",
+ "value": "",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "monthNote",
+ "value": "2021-11",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "relation",
+ "name": "child:template",
+ "value": "kr6HIBBuXRwm",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "11 - November",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "snHll0LeHI7G",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "iYU0SglOv14g",
+ "snHll0LeHI7G"
+ ],
+ "title": "28 - Tuesday",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "dateNote",
+ "value": "2021-11-28",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "relation",
+ "name": "template",
+ "value": "kr6HIBBuXRwm",
+ "isInheritable": false,
+ "position": 20
+ }
+ ],
+ "format": "html",
+ "dataFileName": "28 - Tuesday.html",
+ "attachments": [],
+ "dirFileName": "28 - Tuesday",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "pu9pBUH4VFPN",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "iYU0SglOv14g",
+ "snHll0LeHI7G",
+ "pu9pBUH4VFPN"
+ ],
+ "title": "Phone call about work project",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Phone call about work project.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "JfG63T2BUsrG",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "iYU0SglOv14g",
+ "snHll0LeHI7G",
+ "JfG63T2BUsrG"
+ ],
+ "title": "Christmas gift ideas",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Christmas gift ideas.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "o8F1rlidMSlU",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "iYU0SglOv14g",
+ "snHll0LeHI7G",
+ "o8F1rlidMSlU"
+ ],
+ "title": "Trusted timestamping",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Trusted timestamping.html",
+ "attachments": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "SbaYih0D3uUk",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk"
+ ],
+ "title": "12 - December",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "sorted",
+ "value": "",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "monthNote",
+ "value": "2021-12",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "relation",
+ "name": "child:template",
+ "value": "kr6HIBBuXRwm",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "12 - December",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "BL4b1a0UF8Lx",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "BL4b1a0UF8Lx"
+ ],
+ "title": "18 - Monday",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "template",
+ "value": "kr6HIBBuXRwm",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "dateNote",
+ "value": "2021-12-18",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "weight",
+ "value": "74.9",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "dataFileName": "18 - Monday.html",
+ "attachments": [],
+ "dirFileName": "18 - Monday",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "aaULGL3KvSSH",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "BL4b1a0UF8Lx",
+ "aaULGL3KvSSH"
+ ],
+ "title": "Meeting minutes",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Meeting minutes.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "XzkV6K6a7xO4",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "BL4b1a0UF8Lx",
+ "XzkV6K6a7xO4"
+ ],
+ "title": "Photos from the trip",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "book",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "bookZoomLevel",
+ "value": "2",
+ "isInheritable": false,
+ "position": 0
+ }
+ ],
+ "attachments": [],
+ "dirFileName": "Photos from the trip",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "P0BVQpp3s4PQ",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "BL4b1a0UF8Lx",
+ "XzkV6K6a7xO4",
+ "P0BVQpp3s4PQ"
+ ],
+ "title": "01.jpeg",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "image",
+ "mime": "image/jpg",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "originalFileName",
+ "value": "01.jpeg",
+ "isInheritable": false,
+ "position": 1
+ },
+ {
+ "type": "label",
+ "name": "fileSize",
+ "value": "16881",
+ "isInheritable": false,
+ "position": 2
+ }
+ ],
+ "dataFileName": "01.jpeg",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "EahTkXB5OWCD",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "BL4b1a0UF8Lx",
+ "XzkV6K6a7xO4",
+ "EahTkXB5OWCD"
+ ],
+ "title": "02.jpeg",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "image",
+ "mime": "image/jpg",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "originalFileName",
+ "value": "02.jpeg",
+ "isInheritable": false,
+ "position": 1
+ },
+ {
+ "type": "label",
+ "name": "fileSize",
+ "value": "31697",
+ "isInheritable": false,
+ "position": 2
+ }
+ ],
+ "dataFileName": "02.jpeg",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "Ttda71dsPGSn",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "BL4b1a0UF8Lx",
+ "XzkV6K6a7xO4",
+ "Ttda71dsPGSn"
+ ],
+ "title": "03.jpeg",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "image",
+ "mime": "image/jpg",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "originalFileName",
+ "value": "03.jpeg",
+ "isInheritable": false,
+ "position": 1
+ },
+ {
+ "type": "label",
+ "name": "fileSize",
+ "value": "72522",
+ "isInheritable": false,
+ "position": 2
+ }
+ ],
+ "dataFileName": "03.jpeg",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "droyGgN0bsMD",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "BL4b1a0UF8Lx",
+ "XzkV6K6a7xO4",
+ "droyGgN0bsMD"
+ ],
+ "title": "04.jpeg",
+ "notePosition": 30,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "image",
+ "mime": "image/jpg",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "originalFileName",
+ "value": "04.jpeg",
+ "isInheritable": false,
+ "position": 1
+ },
+ {
+ "type": "label",
+ "name": "fileSize",
+ "value": "43670",
+ "isInheritable": false,
+ "position": 2
+ }
+ ],
+ "dataFileName": "04.jpeg",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "cVtKAYgEWRG2",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "BL4b1a0UF8Lx",
+ "XzkV6K6a7xO4",
+ "cVtKAYgEWRG2"
+ ],
+ "title": "05.jpeg",
+ "notePosition": 40,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "image",
+ "mime": "image/jpg",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "originalFileName",
+ "value": "05.jpeg",
+ "isInheritable": false,
+ "position": 1
+ },
+ {
+ "type": "label",
+ "name": "fileSize",
+ "value": "22327",
+ "isInheritable": false,
+ "position": 2
+ }
+ ],
+ "dataFileName": "05.jpeg",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "tV1Kjv6LEKPK",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "BL4b1a0UF8Lx",
+ "XzkV6K6a7xO4",
+ "tV1Kjv6LEKPK"
+ ],
+ "title": "06.jpeg",
+ "notePosition": 50,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "image",
+ "mime": "image/jpg",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "originalFileName",
+ "value": "06.jpeg",
+ "isInheritable": false,
+ "position": 1
+ },
+ {
+ "type": "label",
+ "name": "fileSize",
+ "value": "79751",
+ "isInheritable": false,
+ "position": 2
+ }
+ ],
+ "dataFileName": "06.jpeg",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "5wcyB4t5al4h",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "BL4b1a0UF8Lx",
+ "XzkV6K6a7xO4",
+ "5wcyB4t5al4h"
+ ],
+ "title": "07.jpeg",
+ "notePosition": 60,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "image",
+ "mime": "image/jpg",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "originalFileName",
+ "value": "07.jpeg",
+ "isInheritable": false,
+ "position": 1
+ },
+ {
+ "type": "label",
+ "name": "fileSize",
+ "value": "30223",
+ "isInheritable": false,
+ "position": 2
+ }
+ ],
+ "dataFileName": "07.jpeg",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "ppwyRRjdOAWX",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "BL4b1a0UF8Lx",
+ "XzkV6K6a7xO4",
+ "ppwyRRjdOAWX"
+ ],
+ "title": "08.jpeg",
+ "notePosition": 70,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "image",
+ "mime": "image/jpg",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "originalFileName",
+ "value": "08.jpeg",
+ "isInheritable": false,
+ "position": 1
+ },
+ {
+ "type": "label",
+ "name": "fileSize",
+ "value": "39928",
+ "isInheritable": false,
+ "position": 2
+ }
+ ],
+ "dataFileName": "08.jpeg",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "qYLcsGWPaUBw",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "BL4b1a0UF8Lx",
+ "XzkV6K6a7xO4",
+ "qYLcsGWPaUBw"
+ ],
+ "title": "09.jpeg",
+ "notePosition": 80,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "image",
+ "mime": "image/jpg",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "originalFileName",
+ "value": "09.jpeg",
+ "isInheritable": false,
+ "position": 1
+ },
+ {
+ "type": "label",
+ "name": "fileSize",
+ "value": "48918",
+ "isInheritable": false,
+ "position": 2
+ }
+ ],
+ "dataFileName": "09.jpeg",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "jYFCqQVLD15p",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "BL4b1a0UF8Lx",
+ "XzkV6K6a7xO4",
+ "jYFCqQVLD15p"
+ ],
+ "title": "10.jpeg",
+ "notePosition": 90,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "image",
+ "mime": "image/jpg",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "originalFileName",
+ "value": "10.jpeg",
+ "isInheritable": false,
+ "position": 1
+ },
+ {
+ "type": "label",
+ "name": "fileSize",
+ "value": "44150",
+ "isInheritable": false,
+ "position": 2
+ }
+ ],
+ "dataFileName": "10.jpeg",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "xQxHCWRvFGOZ",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "BL4b1a0UF8Lx",
+ "XzkV6K6a7xO4",
+ "xQxHCWRvFGOZ"
+ ],
+ "title": "11.jpeg",
+ "notePosition": 100,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "image",
+ "mime": "image/jpg",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "originalFileName",
+ "value": "11.jpeg",
+ "isInheritable": false,
+ "position": 1
+ },
+ {
+ "type": "label",
+ "name": "fileSize",
+ "value": "76231",
+ "isInheritable": false,
+ "position": 2
+ }
+ ],
+ "dataFileName": "11.jpeg",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "9HheXquf5atI",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "BL4b1a0UF8Lx",
+ "XzkV6K6a7xO4",
+ "9HheXquf5atI"
+ ],
+ "title": "12.jpeg",
+ "notePosition": 110,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "image",
+ "mime": "image/jpg",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "originalFileName",
+ "value": "12.jpeg",
+ "isInheritable": false,
+ "position": 1
+ },
+ {
+ "type": "label",
+ "name": "fileSize",
+ "value": "44286",
+ "isInheritable": false,
+ "position": 2
+ }
+ ],
+ "dataFileName": "12.jpeg",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "N3H75XH3nGRe",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "BL4b1a0UF8Lx",
+ "N3H75XH3nGRe"
+ ],
+ "title": "Send invites for christmas party",
+ "notePosition": 20,
+ "prefix": "TODO",
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "task",
+ "value": "",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "location",
+ "value": "work",
+ "isInheritable": false,
+ "position": 30
+ },
+ {
+ "type": "label",
+ "name": "cssClass",
+ "value": "todo",
+ "isInheritable": false,
+ "position": 40
+ },
+ {
+ "type": "label",
+ "name": "cssClass",
+ "value": "todo",
+ "isInheritable": false,
+ "position": 50
+ },
+ {
+ "type": "label",
+ "name": "todoDate",
+ "value": "2021-12-18",
+ "isInheritable": false,
+ "position": 60
+ }
+ ],
+ "format": "html",
+ "dataFileName": "TODO - Send invites for christ.html",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "E5ZFA3tndbcj",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "E5ZFA3tndbcj"
+ ],
+ "title": "19 - Tuesday",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "template",
+ "value": "kr6HIBBuXRwm",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "dateNote",
+ "value": "2021-12-19",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "weight",
+ "value": "75.4",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "dataFileName": "19 - Tuesday.html",
+ "attachments": [],
+ "dirFileName": "19 - Tuesday",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "UB4Rt240VgV9",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "E5ZFA3tndbcj",
+ "UB4Rt240VgV9"
+ ],
+ "title": "Dentist appointment",
+ "notePosition": 0,
+ "prefix": "DONE",
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "task",
+ "value": "",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "tag",
+ "value": "health",
+ "isInheritable": false,
+ "position": 30
+ },
+ {
+ "type": "label",
+ "name": "cssClass",
+ "value": "done",
+ "isInheritable": false,
+ "position": 40
+ },
+ {
+ "type": "label",
+ "name": "todoDate",
+ "value": "2021-12-19",
+ "isInheritable": false,
+ "position": 50
+ },
+ {
+ "type": "label",
+ "name": "doneDate",
+ "value": "2021-12-19",
+ "isInheritable": false,
+ "position": 60
+ }
+ ],
+ "format": "html",
+ "dataFileName": "DONE - Dentist appointment.html",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "YQxQ5rcWiFvQ",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "YQxQ5rcWiFvQ"
+ ],
+ "title": "20 - Wednesday",
+ "notePosition": 30,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "template",
+ "value": "kr6HIBBuXRwm",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "dateNote",
+ "value": "2021-12-20",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "weight",
+ "value": "75.2",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "dataFileName": "20 - Wednesday.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "Vf0GuwMAsitj",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "Vf0GuwMAsitj"
+ ],
+ "title": "21 - Thursday",
+ "notePosition": 40,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "dateNote",
+ "value": "2021-12-21",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "relation",
+ "name": "template",
+ "value": "kr6HIBBuXRwm",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "weight",
+ "value": "76",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "dataFileName": "21 - Thursday.html",
+ "attachments": [],
+ "dirFileName": "21 - Thursday",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "UO2EPOezeQoa",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "Vf0GuwMAsitj",
+ "UO2EPOezeQoa"
+ ],
+ "title": "Christmas shopping",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Christmas shopping.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "7Nc2Ovjyc66i",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "Vf0GuwMAsitj",
+ "7Nc2Ovjyc66i"
+ ],
+ "title": "Office party",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Office party.html",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "ilB1T75UG19p",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "ilB1T75UG19p"
+ ],
+ "title": "22 - Friday",
+ "notePosition": 50,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "dateNote",
+ "value": "2021-12-22",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "relation",
+ "name": "template",
+ "value": "kr6HIBBuXRwm",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "weight",
+ "value": "75.9",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "dataFileName": "22 - Friday.html",
+ "attachments": [],
+ "dirFileName": "22 - Friday",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "n7WlrMv9Kt9O",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "ilB1T75UG19p",
+ "n7WlrMv9Kt9O"
+ ],
+ "title": "Christmas shopping",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Christmas shopping.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "kv6L6RAdwL4h",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "ilB1T75UG19p",
+ "kv6L6RAdwL4h"
+ ],
+ "title": "The Mechanical",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "The Mechanical.html",
+ "attachments": [],
+ "dirFileName": "The Mechanical",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "MV2KF7Ma6nCD",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "ilB1T75UG19p",
+ "kv6L6RAdwL4h",
+ "MV2KF7Ma6nCD"
+ ],
+ "title": "Highlights",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Highlights.html",
+ "attachments": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "Zjezi8WBQ1Mu",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "Zjezi8WBQ1Mu"
+ ],
+ "title": "23 - Saturday",
+ "notePosition": 60,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "template",
+ "value": "kr6HIBBuXRwm",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "dateNote",
+ "value": "2021-12-23",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "weight",
+ "value": "75.6",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "dataFileName": "23 - Saturday.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "gW1WbDNQRMUC",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "gW1WbDNQRMUC"
+ ],
+ "title": "24 - Sunday - Christmas Eve!",
+ "notePosition": 70,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "template",
+ "value": "kr6HIBBuXRwm",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "dateNote",
+ "value": "2021-12-24",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "weight",
+ "value": "76.1",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "dataFileName": "24 - Sunday - Christmas Eve!.html",
+ "attachments": [],
+ "dirFileName": "24 - Sunday - Christmas Eve!",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "7MvrqjQXdy65",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "gW1WbDNQRMUC",
+ "7MvrqjQXdy65"
+ ],
+ "title": "Buy a board game for Alice",
+ "notePosition": 0,
+ "prefix": "DONE",
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "task",
+ "value": "",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "location",
+ "value": "mall",
+ "isInheritable": false,
+ "position": 30
+ },
+ {
+ "type": "label",
+ "name": "cssClass",
+ "value": "done",
+ "isInheritable": false,
+ "position": 40
+ },
+ {
+ "type": "label",
+ "name": "tag",
+ "value": "christmas",
+ "isInheritable": false,
+ "position": 50
+ },
+ {
+ "type": "label",
+ "name": "tag",
+ "value": "shopping",
+ "isInheritable": false,
+ "position": 60
+ },
+ {
+ "type": "label",
+ "name": "todoDate",
+ "value": "2021-12-20",
+ "isInheritable": false,
+ "position": 70
+ },
+ {
+ "type": "label",
+ "name": "doneDate",
+ "value": "2021-12-24",
+ "isInheritable": false,
+ "position": 80
+ }
+ ],
+ "format": "html",
+ "dataFileName": "DONE - Buy a board game for Al.html",
+ "attachments": [
+ {
+ "attachmentId": "SmnN1IA6sqy7",
+ "title": "codenames.jpg",
+ "role": "image",
+ "mime": "image/jpg",
+ "position": 10,
+ "dataFileName": "DONE - Buy a board game fo.jpg"
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "CRjUrigNXYnP",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "gW1WbDNQRMUC",
+ "CRjUrigNXYnP"
+ ],
+ "title": "Buy milk",
+ "notePosition": 10,
+ "prefix": "TODO",
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "task",
+ "value": "",
+ "isInheritable": false,
+ "position": 1
+ },
+ {
+ "type": "label",
+ "name": "location",
+ "value": "tesco",
+ "isInheritable": false,
+ "position": 3
+ },
+ {
+ "type": "label",
+ "name": "cssClass",
+ "value": "todo",
+ "isInheritable": false,
+ "position": 4
+ },
+ {
+ "type": "label",
+ "name": "cssClass",
+ "value": "todo",
+ "isInheritable": false,
+ "position": 4
+ },
+ {
+ "type": "label",
+ "name": "tag",
+ "value": "groceries",
+ "isInheritable": false,
+ "position": 5
+ },
+ {
+ "type": "label",
+ "name": "tag",
+ "value": "shopping",
+ "isInheritable": false,
+ "position": 7
+ },
+ {
+ "type": "label",
+ "name": "todoDate",
+ "value": "2021-12-24",
+ "isInheritable": false,
+ "position": 6
+ }
+ ],
+ "format": "html",
+ "dataFileName": "TODO - Buy milk.html",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "c5sYRApFBW5v",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "SbaYih0D3uUk",
+ "c5sYRApFBW5v"
+ ],
+ "title": "30 - Thursday",
+ "notePosition": 80,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "template",
+ "value": "kr6HIBBuXRwm",
+ "isInheritable": false,
+ "position": 30
+ },
+ {
+ "type": "label",
+ "name": "dateNote",
+ "value": "2021-12-30",
+ "isInheritable": false,
+ "position": 31
+ }
+ ],
+ "format": "html",
+ "dataFileName": "30 - Thursday.html",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "AD8gDaZaJekk",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "AD8gDaZaJekk"
+ ],
+ "title": "Epics",
+ "notePosition": 30,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Epics.html",
+ "attachments": [],
+ "dirFileName": "Epics",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "c3NaitsUCQck",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "AD8gDaZaJekk",
+ "c3NaitsUCQck"
+ ],
+ "title": "Christmas",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Christmas.html",
+ "attachments": [],
+ "dirFileName": "Christmas",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "Lu42Q5okeVuB",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "AD8gDaZaJekk",
+ "c3NaitsUCQck",
+ "Lu42Q5okeVuB"
+ ],
+ "title": "Vacation days",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Vacation days.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "sHSzraHtxH8l",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "AD8gDaZaJekk",
+ "c3NaitsUCQck",
+ "sHSzraHtxH8l"
+ ],
+ "title": "Christmas dinner",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Christmas dinner.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "Jk1NHUjA5nIT",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "AD8gDaZaJekk",
+ "c3NaitsUCQck",
+ "Jk1NHUjA5nIT"
+ ],
+ "title": "Shopping",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "Shopping",
+ "children": [
+ {
+ "isClone": true,
+ "noteId": "JfG63T2BUsrG",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "AD8gDaZaJekk",
+ "c3NaitsUCQck",
+ "Jk1NHUjA5nIT",
+ "JfG63T2BUsrG"
+ ],
+ "title": "Christmas gift ideas",
+ "prefix": "28. 11. 2017",
+ "dataFileName": "28. 11. 2017 - Christmas gift ideas.clone.html",
+ "type": "text",
+ "format": "html",
+ "isExpanded": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "cO1ZpqA44IcF",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "b3kSYO90QeET",
+ "AD8gDaZaJekk",
+ "cO1ZpqA44IcF"
+ ],
+ "title": "Vacation",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Vacation.html",
+ "attachments": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "kr6HIBBuXRwm",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "zoH8XiuiEJSV",
+ "kr6HIBBuXRwm"
+ ],
+ "title": "Day template",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "label:weight",
+ "value": "promoted,number,single,precision=1",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-notepad",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "excludeFromNoteMap",
+ "value": "",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Day template.html",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "bZBkjm466gSM",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM"
+ ],
+ "title": "Tech",
+ "notePosition": 40,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-desktop",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Tech.html",
+ "attachments": [],
+ "dirFileName": "Tech",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "RomrYHfAtLTR",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "RomrYHfAtLTR"
+ ],
+ "title": "Security",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-lock-alt",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "Security",
+ "children": [
+ {
+ "isClone": true,
+ "noteId": "o8F1rlidMSlU",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "RomrYHfAtLTR",
+ "o8F1rlidMSlU"
+ ],
+ "title": "Trusted timestamping",
+ "prefix": null,
+ "dataFileName": "Trusted timestamping.clone.html",
+ "type": "text",
+ "format": "html",
+ "isExpanded": false
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "GPaZYkEBBX0o",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "GPaZYkEBBX0o"
+ ],
+ "title": "Linux",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bxl-tux",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "Linux",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "ogwx0UzfkpFd",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "GPaZYkEBBX0o",
+ "ogwx0UzfkpFd"
+ ],
+ "title": "History",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "History.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "MQvl2MArKI33",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "GPaZYkEBBX0o",
+ "MQvl2MArKI33"
+ ],
+ "title": "Bash scripting",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Bash scripting.html",
+ "attachments": [],
+ "dirFileName": "Bash scripting",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "J3x4Au74CLjn",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "GPaZYkEBBX0o",
+ "MQvl2MArKI33",
+ "J3x4Au74CLjn"
+ ],
+ "title": "While loop",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "While loop.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "XjmLbxm47KRJ",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "GPaZYkEBBX0o",
+ "MQvl2MArKI33",
+ "XjmLbxm47KRJ"
+ ],
+ "title": "Bash startup modes",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Bash startup modes.html",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "yWP7kwU5IQyo",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "GPaZYkEBBX0o",
+ "yWP7kwU5IQyo"
+ ],
+ "title": "Ubuntu",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Ubuntu.html",
+ "attachments": [],
+ "dirFileName": "Ubuntu",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "6IjjOQJn7k50",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "GPaZYkEBBX0o",
+ "yWP7kwU5IQyo",
+ "6IjjOQJn7k50"
+ ],
+ "title": "Unity shortcuts",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Unity shortcuts.html",
+ "attachments": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "6mWClR7od2pV",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "6mWClR7od2pV"
+ ],
+ "title": "Programming",
+ "notePosition": 30,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-code-alt",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "Programming",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "x6YTurY3BTiG",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "6mWClR7od2pV",
+ "x6YTurY3BTiG"
+ ],
+ "title": "Java",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bxl-java",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Java.html",
+ "attachments": []
+ },
+ {
+ "isClone": true,
+ "noteId": "MQvl2MArKI33",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "6mWClR7od2pV",
+ "MQvl2MArKI33"
+ ],
+ "title": "Bash scripting",
+ "prefix": null,
+ "dataFileName": "Bash scripting.clone.html",
+ "type": "text",
+ "format": "html",
+ "isExpanded": false
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "SHbxthISQkxg",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "SHbxthISQkxg"
+ ],
+ "title": "Node.js",
+ "notePosition": 40,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "book",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bxl-nodejs",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "attachments": [],
+ "dirFileName": "Node.js",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "bXXkjeUR2M5Y",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "SHbxthISQkxg",
+ "bXXkjeUR2M5Y"
+ ],
+ "title": "Intro",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Intro.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "wys20ie8Saky",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "SHbxthISQkxg",
+ "wys20ie8Saky"
+ ],
+ "title": "Overview",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Overview.html",
+ "attachments": [],
+ "dirFileName": "Overview",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "d3ghNjFh60OT",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "SHbxthISQkxg",
+ "wys20ie8Saky",
+ "d3ghNjFh60OT"
+ ],
+ "title": "History",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "History.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "SN03WufBiQyo",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "SHbxthISQkxg",
+ "wys20ie8Saky",
+ "SN03WufBiQyo"
+ ],
+ "title": "Platform architecture",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Platform architecture.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "ZnHMVQBreHkY",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "SHbxthISQkxg",
+ "wys20ie8Saky",
+ "ZnHMVQBreHkY"
+ ],
+ "title": "Industry support",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Industry support.html",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "Gwt1NcVHVN4J",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "bZBkjm466gSM",
+ "SHbxthISQkxg",
+ "Gwt1NcVHVN4J"
+ ],
+ "title": "Releases",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Releases.html",
+ "attachments": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "dvgVuMNvit5M",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M"
+ ],
+ "title": "Note Types",
+ "notePosition": 60,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-file",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Note Types.html",
+ "attachments": [],
+ "dirFileName": "Note Types",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "vnyKLHvbHZa5",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "vnyKLHvbHZa5"
+ ],
+ "title": "Canvas",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "canvas",
+ "mime": "application/json",
+ "attributes": [],
+ "dataFileName": "Canvas.json",
+ "attachments": [
+ {
+ "attachmentId": "C6BFKNdZQHRC",
+ "title": "canvas-export.svg",
+ "role": "image",
+ "mime": "image/svg+xml",
+ "position": 0,
+ "dataFileName": "Canvas_canvas-export.svg"
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "6156RTTenVtt",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "6156RTTenVtt"
+ ],
+ "title": "Mermaid Diagrams",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "book",
+ "mime": "",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-selection",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "attachments": [],
+ "dirFileName": "Mermaid Diagrams",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "SHvERoLB6fj8",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "6156RTTenVtt",
+ "SHvERoLB6fj8"
+ ],
+ "title": "Flow",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "mermaid",
+ "mime": "text/mermaid",
+ "attributes": [],
+ "dataFileName": "Flow.txt",
+ "attachments": [
+ {
+ "attachmentId": "DRQRqkeasUcb",
+ "title": "mermaid-export.svg",
+ "role": "image",
+ "mime": "image/svg+xml",
+ "position": 10,
+ "dataFileName": "Flow_mermaid-export.svg"
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "EQPqvF08hPVy",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "6156RTTenVtt",
+ "EQPqvF08hPVy"
+ ],
+ "title": "Flow (ELK)",
+ "notePosition": 11,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "mermaid",
+ "mime": "text/mermaid",
+ "attributes": [],
+ "dataFileName": "Flow (ELK).txt",
+ "attachments": [
+ {
+ "attachmentId": "dVGC3G8tekQW",
+ "title": "mermaid-export.svg",
+ "role": "image",
+ "mime": "image/svg+xml",
+ "position": 10,
+ "dataFileName": "Flow (ELK)_mermaid-export.svg"
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "hPXTC0epiXkk",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "6156RTTenVtt",
+ "hPXTC0epiXkk"
+ ],
+ "title": "Sequence",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "mermaid",
+ "mime": "text/mermaid",
+ "attributes": [],
+ "dataFileName": "Sequence.txt",
+ "attachments": [
+ {
+ "attachmentId": "xSLnrl7h3fiT",
+ "title": "mermaid-export.svg",
+ "role": "image",
+ "mime": "image/svg+xml",
+ "position": 10,
+ "dataFileName": "Sequence_mermaid-export.svg"
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "a8AMHbDdTyNz",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "6156RTTenVtt",
+ "a8AMHbDdTyNz"
+ ],
+ "title": "Gantt",
+ "notePosition": 30,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "mermaid",
+ "mime": "text/plain",
+ "attributes": [],
+ "dataFileName": "Gantt.txt",
+ "attachments": [
+ {
+ "attachmentId": "Zk2G65QXLBkz",
+ "title": "mermaid-export.svg",
+ "role": "image",
+ "mime": "image/svg+xml",
+ "position": 10,
+ "dataFileName": "Gantt_mermaid-export.svg"
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "rmAseO7ISgEK",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "6156RTTenVtt",
+ "rmAseO7ISgEK"
+ ],
+ "title": "Class",
+ "notePosition": 40,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "mermaid",
+ "mime": "text/plain",
+ "attributes": [],
+ "dataFileName": "Class.txt",
+ "attachments": [
+ {
+ "attachmentId": "kO7BRtEJU47L",
+ "title": "mermaid-export.svg",
+ "role": "image",
+ "mime": "image/svg+xml",
+ "position": 10,
+ "dataFileName": "Class_mermaid-export.svg"
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "gZKhj4WEYrRY",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "6156RTTenVtt",
+ "gZKhj4WEYrRY"
+ ],
+ "title": "State",
+ "notePosition": 50,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "mermaid",
+ "mime": "text/plain",
+ "attributes": [],
+ "dataFileName": "State.txt",
+ "attachments": [
+ {
+ "attachmentId": "QEYXvcbekWg8",
+ "title": "mermaid-export.svg",
+ "role": "image",
+ "mime": "image/svg+xml",
+ "position": 10,
+ "dataFileName": "State_mermaid-export.svg"
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "3LrbigleD5U6",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "6156RTTenVtt",
+ "3LrbigleD5U6"
+ ],
+ "title": "Mind Map",
+ "notePosition": 60,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "mermaid",
+ "mime": "text/mermaid",
+ "attributes": [],
+ "dataFileName": "Mind Map.txt",
+ "attachments": [
+ {
+ "attachmentId": "QWELEP3BIox8",
+ "title": "mermaid-export.svg",
+ "role": "image",
+ "mime": "image/svg+xml",
+ "position": 10,
+ "dataFileName": "Mind Map_mermaid-export.svg"
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "eWRu1caODwQ7",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "6156RTTenVtt",
+ "eWRu1caODwQ7"
+ ],
+ "title": "Pie",
+ "notePosition": 70,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "mermaid",
+ "mime": "text/plain",
+ "attributes": [],
+ "dataFileName": "Pie.txt",
+ "attachments": [
+ {
+ "attachmentId": "8QESGpZlxlaP",
+ "title": "mermaid-export.svg",
+ "role": "image",
+ "mime": "image/svg+xml",
+ "position": 10,
+ "dataFileName": "Pie_mermaid-export.svg"
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "zCZPqmBtCkk9",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "6156RTTenVtt",
+ "zCZPqmBtCkk9"
+ ],
+ "title": "Journey",
+ "notePosition": 80,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "mermaid",
+ "mime": "text/plain",
+ "attributes": [],
+ "dataFileName": "Journey.txt",
+ "attachments": [
+ {
+ "attachmentId": "jXvpt0lsL1Wj",
+ "title": "mermaid-export.svg",
+ "role": "image",
+ "mime": "image/svg+xml",
+ "position": 10,
+ "dataFileName": "Journey_mermaid-export.svg"
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "Pnv2FquBIfl5",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "6156RTTenVtt",
+ "Pnv2FquBIfl5"
+ ],
+ "title": "Git",
+ "notePosition": 90,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "mermaid",
+ "mime": "text/plain",
+ "attributes": [],
+ "dataFileName": "Git.txt",
+ "attachments": [
+ {
+ "attachmentId": "FFBAw2a1dx84",
+ "title": "mermaid-export.svg",
+ "role": "image",
+ "mime": "image/svg+xml",
+ "position": 10,
+ "dataFileName": "Git_mermaid-export.svg"
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "dZ3AQfk4DMUh",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "6156RTTenVtt",
+ "dZ3AQfk4DMUh"
+ ],
+ "title": "Entity Relationship",
+ "notePosition": 100,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "mermaid",
+ "mime": "text/plain",
+ "attributes": [],
+ "dataFileName": "Entity Relationship.txt",
+ "attachments": [
+ {
+ "attachmentId": "DJgvhIa4o6vm",
+ "title": "mermaid-export.svg",
+ "role": "image",
+ "mime": "image/svg+xml",
+ "position": 10,
+ "dataFileName": "Entity Relationship_mermai.svg"
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "6F50lXa4nQdo",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "6156RTTenVtt",
+ "6F50lXa4nQdo"
+ ],
+ "title": "Bar chart",
+ "notePosition": 110,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "mermaid",
+ "mime": "text/mermaid",
+ "attributes": [],
+ "dataFileName": "Bar chart.txt",
+ "attachments": [
+ {
+ "attachmentId": "c1QUhX4T1LxY",
+ "title": "mermaid-export.svg",
+ "role": "image",
+ "mime": "image/svg+xml",
+ "position": 10,
+ "dataFileName": "Bar chart_mermaid-export.svg"
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "KTsZskCGRbA4",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "6156RTTenVtt",
+ "KTsZskCGRbA4"
+ ],
+ "title": "C4",
+ "notePosition": 120,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "mermaid",
+ "mime": "text/plain",
+ "attributes": [],
+ "dataFileName": "C4.txt",
+ "attachments": [
+ {
+ "attachmentId": "Sr89usqNJfOw",
+ "title": "mermaid-export.svg",
+ "role": "image",
+ "mime": "image/svg+xml",
+ "position": 10,
+ "dataFileName": "C4_mermaid-export.svg"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "5eoXhBVBJmVS",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "5eoXhBVBJmVS"
+ ],
+ "title": "Mind Map",
+ "notePosition": 30,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "mindMap",
+ "mime": "application/json",
+ "attributes": [],
+ "dataFileName": "Mind Map.json",
+ "attachments": [
+ {
+ "attachmentId": "mf1aX48Kwveu",
+ "title": "mindmap-export.svg",
+ "role": "image",
+ "mime": "image/svg+xml",
+ "position": 0,
+ "dataFileName": "Mind Map_mindmap-export.svg"
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "65Kj96Nbdc7Q",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "65Kj96Nbdc7Q"
+ ],
+ "title": "Geo Map (The Seven Wonders of the World)",
+ "notePosition": 40,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "book",
+ "mime": "",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "template",
+ "value": "_template_geo_map",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "label:geolocation",
+ "value": "promoted,alias=Geolocation,single,text",
+ "isInheritable": true,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "hidePromotedAttributes",
+ "value": "",
+ "isInheritable": false,
+ "position": 20
+ }
+ ],
+ "attachments": [
+ {
+ "attachmentId": "jPOilfLdSmbX",
+ "title": "geoMap.json",
+ "role": "viewConfig",
+ "mime": "application/json",
+ "position": 0,
+ "dataFileName": "Geo Map (The Seven Wonder.json"
+ }
+ ],
+ "dirFileName": "Geo Map (The Seven Wonders of the World)",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "CM2Anb6Tre6X",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "65Kj96Nbdc7Q",
+ "CM2Anb6Tre6X"
+ ],
+ "title": "The Colosseum, Rome, Italy",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "geolocation",
+ "value": "41.89024211851462, 12.492263083403595",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-circle",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "dataFileName": "The Colosseum, Rome, Italy.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "cQzdY4sLOH09",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "65Kj96Nbdc7Q",
+ "cQzdY4sLOH09"
+ ],
+ "title": "The Great Wall of China",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "geolocation",
+ "value": "40.431907671437244, 116.57035343915216",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-selection",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "dataFileName": "The Great Wall of China.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "5SW71KrDoAP3",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "65Kj96Nbdc7Q",
+ "5SW71KrDoAP3"
+ ],
+ "title": "The Taj Mahal, India",
+ "notePosition": 30,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "geolocation",
+ "value": "27.175173410074475, 78.04213146744753",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-arch",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "dataFileName": "The Taj Mahal, India.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "1EDzMGtWVNOv",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "65Kj96Nbdc7Q",
+ "1EDzMGtWVNOv"
+ ],
+ "title": "Christ the Redeemer, Brazil",
+ "notePosition": 40,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "geolocation",
+ "value": "-22.951993968508837, -43.21044464113274",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-church",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Christ the Redeemer, Brazil.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "efZsyQHpu0k7",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "65Kj96Nbdc7Q",
+ "efZsyQHpu0k7"
+ ],
+ "title": "Machu Picchu, Peru",
+ "notePosition": 50,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "geolocation",
+ "value": "-13.163198787170078, -72.54528356174288",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bxs-castle",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Machu Picchu, Peru.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "DYP8VQ7iEipa",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "65Kj96Nbdc7Q",
+ "DYP8VQ7iEipa"
+ ],
+ "title": "Chichén Itzá, Mexico",
+ "notePosition": 60,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "geolocation",
+ "value": "20.678882007143176, -88.56836961554815",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bxs-component",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Chichén Itzá, Mexico.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "eDTxcs4A7xYB",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "dvgVuMNvit5M",
+ "65Kj96Nbdc7Q",
+ "eDTxcs4A7xYB"
+ ],
+ "title": "Petra, Jordan",
+ "notePosition": 70,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "geolocation",
+ "value": "30.32084750671952, 35.481009100454926",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bxs-castle",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Petra, Jordan.html",
+ "attachments": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "XpCKD6IODUj2",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "XpCKD6IODUj2"
+ ],
+ "title": "Books",
+ "notePosition": 130,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "child:template",
+ "value": "O9xYjAzeyT9O",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "wordCount",
+ "value": "",
+ "isInheritable": true,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-book-open",
+ "isInheritable": false,
+ "position": 21
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "Books",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "rdGlenjQSD4y",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "XpCKD6IODUj2",
+ "rdGlenjQSD4y"
+ ],
+ "title": "To read",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "To read.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "O9xYjAzeyT9O",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "XpCKD6IODUj2",
+ "O9xYjAzeyT9O"
+ ],
+ "title": "Book template",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-book-reader",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "label:readingEnd",
+ "value": "promoted,single,date",
+ "isInheritable": false,
+ "position": 30
+ },
+ {
+ "type": "label",
+ "name": "label:readingStart",
+ "value": "promoted,single,date",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "label:author",
+ "value": "promoted,single,text",
+ "isInheritable": false,
+ "position": 50
+ },
+ {
+ "type": "label",
+ "name": "template",
+ "value": "",
+ "isInheritable": false,
+ "position": 60
+ },
+ {
+ "type": "label",
+ "name": "label:link",
+ "value": "promoted,single,url",
+ "isInheritable": false,
+ "position": 40
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Book template.html",
+ "attachments": [],
+ "dirFileName": "Book template",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "J6gog8wRwN8g",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "XpCKD6IODUj2",
+ "O9xYjAzeyT9O",
+ "J6gog8wRwN8g"
+ ],
+ "title": "Highlights",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Highlights.html",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "rZ3BP6Qfyker",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "XpCKD6IODUj2",
+ "rZ3BP6Qfyker"
+ ],
+ "title": "Reviews",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "child:template",
+ "value": "O9xYjAzeyT9O",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "Reviews",
+ "children": [
+ {
+ "isClone": true,
+ "noteId": "kv6L6RAdwL4h",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "XpCKD6IODUj2",
+ "rZ3BP6Qfyker",
+ "kv6L6RAdwL4h"
+ ],
+ "title": "The Mechanical",
+ "prefix": null,
+ "dataFileName": "The Mechanical.clone.html",
+ "type": "text",
+ "format": "html",
+ "isExpanded": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "B2ao3EopB5yW",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "B2ao3EopB5yW"
+ ],
+ "title": "Work",
+ "notePosition": 150,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-briefcase-alt",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "Work",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "wqzzSbAEUFLQ",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "B2ao3EopB5yW",
+ "wqzzSbAEUFLQ"
+ ],
+ "title": "HR",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "HR.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "9CA1t6Z3JTOT",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "B2ao3EopB5yW",
+ "9CA1t6Z3JTOT"
+ ],
+ "title": "Processes",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Processes.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "RpJ3H6CeslUU",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "B2ao3EopB5yW",
+ "RpJ3H6CeslUU"
+ ],
+ "title": "Projects",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Projects.html",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "Zl2So0VN2bPq",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "Zl2So0VN2bPq"
+ ],
+ "title": "Steel Blue",
+ "notePosition": 160,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "text/css",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "appTheme",
+ "value": "steel-blue",
+ "isInheritable": false,
+ "position": 0
+ }
+ ],
+ "dataFileName": "Steel Blue.css",
+ "attachments": [],
+ "dirFileName": "Steel Blue",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "WJKLFxyflwt3",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "Zl2So0VN2bPq",
+ "WJKLFxyflwt3"
+ ],
+ "title": "eb-garamond-v9-latin-regular.woff2",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "file",
+ "mime": "application/octet-stream",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "originalFileName",
+ "value": "eb-garamond-v9-latin-regular.woff2",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "fileSize",
+ "value": "27608",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "customResourceProvider",
+ "value": "fonts/garamond.woff2",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "dataFileName": "eb-garamond-v9-latin-reg.woff2",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "RHRrVvtDRfhT",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "Zl2So0VN2bPq",
+ "RHRrVvtDRfhT"
+ ],
+ "title": "raleway-v12-latin-regular.woff2",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "file",
+ "mime": "application/octet-stream",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "originalFileName",
+ "value": "raleway-v12-latin-regular.woff2",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "fileSize",
+ "value": "20444",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "customResourceProvider",
+ "value": "fonts/raleway.woff2",
+ "isInheritable": false,
+ "position": 30
+ }
+ ],
+ "dataFileName": "raleway-v12-latin-regula.woff2",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "KZVWidxicAfn",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn"
+ ],
+ "title": "Scripting examples",
+ "notePosition": 350,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bxl-javascript",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "Scripting examples",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "JwXAb88VP2wn",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn"
+ ],
+ "title": "Task manager",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-task",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Task manager.html",
+ "attachments": [],
+ "dirFileName": "Task manager",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "JgjjgA2mpWHd",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "JgjjgA2mpWHd"
+ ],
+ "title": "Locations",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "taskLocationRoot",
+ "value": "",
+ "isInheritable": false,
+ "position": 0
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-map",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "Locations",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "guVfSfQsVNnB",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "JgjjgA2mpWHd",
+ "guVfSfQsVNnB"
+ ],
+ "title": "gym",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "taskLocationNote",
+ "value": "gym",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "format": "html",
+ "dataFileName": "gym.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "X1PGaxXd2GjI",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "JgjjgA2mpWHd",
+ "X1PGaxXd2GjI"
+ ],
+ "title": "work",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "taskLocationNote",
+ "value": "work",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "work",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "1yhbjW4nlr4l",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "JgjjgA2mpWHd",
+ "X1PGaxXd2GjI",
+ "1yhbjW4nlr4l"
+ ],
+ "title": "Send invites for christmas party",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "task",
+ "value": "",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "relation",
+ "name": "template",
+ "value": "s0jjoiuap4Ic",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "location",
+ "value": "work",
+ "isInheritable": false,
+ "position": 30
+ },
+ {
+ "type": "label",
+ "name": "cssClass",
+ "value": "todo",
+ "isInheritable": false,
+ "position": 40
+ },
+ {
+ "type": "label",
+ "name": "cssClass",
+ "value": "todo",
+ "isInheritable": false,
+ "position": 50
+ },
+ {
+ "type": "label",
+ "name": "todoDate",
+ "value": "2021-12-18",
+ "isInheritable": false,
+ "position": 60
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Send invites for christmas par.html",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "8vUXW1ycnGte",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "JgjjgA2mpWHd",
+ "8vUXW1ycnGte"
+ ],
+ "title": "tesco",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "taskLocationNote",
+ "value": "tesco",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "tesco",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "jjeJHzHpi6ur",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "JgjjgA2mpWHd",
+ "8vUXW1ycnGte",
+ "jjeJHzHpi6ur"
+ ],
+ "title": "Buy milk",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "task",
+ "value": "",
+ "isInheritable": false,
+ "position": 1
+ },
+ {
+ "type": "relation",
+ "name": "template",
+ "value": "s0jjoiuap4Ic",
+ "isInheritable": false,
+ "position": 2
+ },
+ {
+ "type": "label",
+ "name": "location",
+ "value": "tesco",
+ "isInheritable": false,
+ "position": 3
+ },
+ {
+ "type": "label",
+ "name": "cssClass",
+ "value": "todo",
+ "isInheritable": false,
+ "position": 4
+ },
+ {
+ "type": "label",
+ "name": "cssClass",
+ "value": "todo",
+ "isInheritable": false,
+ "position": 4
+ },
+ {
+ "type": "label",
+ "name": "tag",
+ "value": "groceries",
+ "isInheritable": false,
+ "position": 5
+ },
+ {
+ "type": "label",
+ "name": "tag",
+ "value": "shopping",
+ "isInheritable": false,
+ "position": 7
+ },
+ {
+ "type": "label",
+ "name": "todoDate",
+ "value": "2021-12-24",
+ "isInheritable": false,
+ "position": 6
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Buy milk.html",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "5vuniBMFTH72",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "JgjjgA2mpWHd",
+ "5vuniBMFTH72"
+ ],
+ "title": "mall",
+ "notePosition": 30,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "taskLocationNote",
+ "value": "mall",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "mall",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "Se4NJBgDXgDP",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "JgjjgA2mpWHd",
+ "5vuniBMFTH72",
+ "Se4NJBgDXgDP"
+ ],
+ "title": "Buy some book for Bob",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "task",
+ "value": "",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "relation",
+ "name": "template",
+ "value": "s0jjoiuap4Ic",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "location",
+ "value": "mall",
+ "isInheritable": false,
+ "position": 30
+ },
+ {
+ "type": "label",
+ "name": "cssClass",
+ "value": "todo",
+ "isInheritable": false,
+ "position": 40
+ },
+ {
+ "type": "label",
+ "name": "cssClass",
+ "value": "todo",
+ "isInheritable": false,
+ "position": 50
+ },
+ {
+ "type": "label",
+ "name": "tag",
+ "value": "christmas",
+ "isInheritable": false,
+ "position": 60
+ },
+ {
+ "type": "label",
+ "name": "todoDate",
+ "value": "",
+ "isInheritable": false,
+ "position": 70
+ },
+ {
+ "type": "label",
+ "name": "tag",
+ "value": "shopping",
+ "isInheritable": false,
+ "position": 80
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Buy some book for Bob.html",
+ "attachments": [],
+ "dirFileName": "Buy some book for Bob",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "FFfZ8j7dbla2",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "JgjjgA2mpWHd",
+ "5vuniBMFTH72",
+ "Se4NJBgDXgDP",
+ "FFfZ8j7dbla2"
+ ],
+ "title": "Maybe Black Swan?",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [],
+ "format": "html",
+ "dataFileName": "Maybe Black Swan.html",
+ "attachments": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "XgOo7la4Zhaa",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "XgOo7la4Zhaa"
+ ],
+ "title": "Done",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "taskDoneRoot",
+ "value": "",
+ "isInheritable": false,
+ "position": 0
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-check-square",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "Done",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "9KSQ8DZQlXM9",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "XgOo7la4Zhaa",
+ "9KSQ8DZQlXM9"
+ ],
+ "title": "Buy a board game for Alice",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "task",
+ "value": "",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "relation",
+ "name": "template",
+ "value": "s0jjoiuap4Ic",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "location",
+ "value": "mall",
+ "isInheritable": false,
+ "position": 30
+ },
+ {
+ "type": "label",
+ "name": "cssClass",
+ "value": "done",
+ "isInheritable": false,
+ "position": 40
+ },
+ {
+ "type": "label",
+ "name": "tag",
+ "value": "christmas",
+ "isInheritable": false,
+ "position": 50
+ },
+ {
+ "type": "label",
+ "name": "tag",
+ "value": "shopping",
+ "isInheritable": false,
+ "position": 60
+ },
+ {
+ "type": "label",
+ "name": "todoDate",
+ "value": "2021-12-20",
+ "isInheritable": false,
+ "position": 70
+ },
+ {
+ "type": "label",
+ "name": "doneDate",
+ "value": "2021-12-24",
+ "isInheritable": false,
+ "position": 80
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Buy a board game for Alice.html",
+ "attachments": [
+ {
+ "attachmentId": "hTaZjHj3H3Pc",
+ "title": "codenames.jpg",
+ "role": "image",
+ "mime": "image/jpg",
+ "position": 10,
+ "dataFileName": "Buy a board game for Alice.jpg"
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "32RmtcG0KwdZ",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "XgOo7la4Zhaa",
+ "32RmtcG0KwdZ"
+ ],
+ "title": "Dentist appointment",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "task",
+ "value": "",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "relation",
+ "name": "template",
+ "value": "s0jjoiuap4Ic",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "tag",
+ "value": "health",
+ "isInheritable": false,
+ "position": 30
+ },
+ {
+ "type": "label",
+ "name": "cssClass",
+ "value": "done",
+ "isInheritable": false,
+ "position": 40
+ },
+ {
+ "type": "label",
+ "name": "todoDate",
+ "value": "2021-12-19",
+ "isInheritable": false,
+ "position": 50
+ },
+ {
+ "type": "label",
+ "name": "doneDate",
+ "value": "2021-12-19",
+ "isInheritable": false,
+ "position": 60
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Dentist appointment.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "GhLqwhaJ0EC2",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "XgOo7la4Zhaa",
+ "GhLqwhaJ0EC2"
+ ],
+ "title": "Get a gym membership",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "task",
+ "value": "",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "relation",
+ "name": "template",
+ "value": "s0jjoiuap4Ic",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "location",
+ "value": "gym",
+ "isInheritable": false,
+ "position": 30
+ },
+ {
+ "type": "label",
+ "name": "cssClass",
+ "value": "done",
+ "isInheritable": false,
+ "position": 40
+ },
+ {
+ "type": "label",
+ "name": "todoDate",
+ "value": "2021-12-28",
+ "isInheritable": false,
+ "position": 50
+ },
+ {
+ "type": "label",
+ "name": "doneDate",
+ "value": "2021-12-30",
+ "isInheritable": false,
+ "position": 60
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Get a gym membership.html",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "pQFBLIQkRk7e",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "pQFBLIQkRk7e"
+ ],
+ "title": "TODO",
+ "notePosition": 30,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "taskTodoRoot",
+ "value": "",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "child:task",
+ "value": "",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "relation",
+ "name": "child:template",
+ "value": "s0jjoiuap4Ic",
+ "isInheritable": false,
+ "position": 30
+ },
+ {
+ "type": "label",
+ "name": "child:cssClass",
+ "value": "todo",
+ "isInheritable": false,
+ "position": 40
+ },
+ {
+ "type": "label",
+ "name": "bookmarkFolder",
+ "value": "",
+ "isInheritable": false,
+ "position": 50
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bxs-plane-take-off",
+ "isInheritable": false,
+ "position": 51
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "TODO",
+ "children": [
+ {
+ "isClone": true,
+ "noteId": "jjeJHzHpi6ur",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "pQFBLIQkRk7e",
+ "jjeJHzHpi6ur"
+ ],
+ "title": "Buy milk",
+ "prefix": null,
+ "dataFileName": "Buy milk.clone.html",
+ "type": "text",
+ "format": "html",
+ "isExpanded": false
+ },
+ {
+ "isClone": true,
+ "noteId": "Se4NJBgDXgDP",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "pQFBLIQkRk7e",
+ "Se4NJBgDXgDP"
+ ],
+ "title": "Buy some book for Bob",
+ "prefix": null,
+ "dataFileName": "Buy some book for Bob.clone.html",
+ "type": "text",
+ "format": "html",
+ "isExpanded": false
+ },
+ {
+ "isClone": true,
+ "noteId": "1yhbjW4nlr4l",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "pQFBLIQkRk7e",
+ "1yhbjW4nlr4l"
+ ],
+ "title": "Send invites for christmas party",
+ "prefix": null,
+ "dataFileName": "Send invites for christmas party.clone.html",
+ "type": "text",
+ "format": "html",
+ "isExpanded": false
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "zzbGZzlK1UnU",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "zzbGZzlK1UnU"
+ ],
+ "title": "Implementation",
+ "notePosition": 40,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-code-alt",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "Implementation",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "o6dIpDqmk9Mk",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "zzbGZzlK1UnU",
+ "o6dIpDqmk9Mk"
+ ],
+ "title": "attribute changed",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "application/javascript;env=backend",
+ "attributes": [],
+ "dataFileName": "attribute changed.js",
+ "attachments": [],
+ "dirFileName": "attribute changed",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "AkYrzb1oFJLM",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "zzbGZzlK1UnU",
+ "o6dIpDqmk9Mk",
+ "AkYrzb1oFJLM"
+ ],
+ "title": "reconcileAssignments",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "application/javascript;env=backend",
+ "attributes": [],
+ "dataFileName": "reconcileAssignments.js",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "dRHJjUpBEMHl",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "zzbGZzlK1UnU",
+ "dRHJjUpBEMHl"
+ ],
+ "title": "CSS",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "text/css",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "appCss",
+ "value": "",
+ "isInheritable": false,
+ "position": 0
+ }
+ ],
+ "dataFileName": "CSS.css",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "s0jjoiuap4Ic",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "zzbGZzlK1UnU",
+ "s0jjoiuap4Ic"
+ ],
+ "title": "task template",
+ "notePosition": 30,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "label:location",
+ "value": "promoted,text,single",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "cssClass",
+ "value": "todo",
+ "isInheritable": false,
+ "position": 30
+ },
+ {
+ "type": "label",
+ "name": "label:tag",
+ "value": "promoted,text,multi",
+ "isInheritable": false,
+ "position": 40
+ },
+ {
+ "type": "label",
+ "name": "label:todoDate",
+ "value": "promoted,date,single",
+ "isInheritable": false,
+ "position": 50
+ },
+ {
+ "type": "label",
+ "name": "label:doneDate",
+ "value": "promoted,date,single",
+ "isInheritable": false,
+ "position": 60
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-task",
+ "isInheritable": false,
+ "position": 70
+ },
+ {
+ "type": "label",
+ "name": "task",
+ "value": "",
+ "isInheritable": false,
+ "position": 80
+ },
+ {
+ "type": "relation",
+ "name": "runOnAttributeChange",
+ "value": "o6dIpDqmk9Mk",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "format": "html",
+ "dataFileName": "task template.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "B8r8cR1CgOXC",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "zzbGZzlK1UnU",
+ "B8r8cR1CgOXC"
+ ],
+ "title": "createNewTask",
+ "notePosition": 40,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "application/javascript;env=frontend",
+ "attributes": [],
+ "dataFileName": "createNewTask.js",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "6wvo0XkUPMIC",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "6wvo0XkUPMIC"
+ ],
+ "title": "Tags",
+ "notePosition": 50,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "taskTagRoot",
+ "value": "",
+ "isInheritable": false,
+ "position": 0
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-purchase-tag",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "Tags",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "vqXaew913RYE",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "6wvo0XkUPMIC",
+ "vqXaew913RYE"
+ ],
+ "title": "health",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "taskTagNote",
+ "value": "health",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "format": "html",
+ "dataFileName": "health.html",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "Zz5qaexattwb",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "6wvo0XkUPMIC",
+ "Zz5qaexattwb"
+ ],
+ "title": "shopping",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "taskTagNote",
+ "value": "shopping",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "shopping",
+ "children": [
+ {
+ "isClone": true,
+ "noteId": "jjeJHzHpi6ur",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "6wvo0XkUPMIC",
+ "Zz5qaexattwb",
+ "jjeJHzHpi6ur"
+ ],
+ "title": "Buy milk",
+ "prefix": null,
+ "dataFileName": "Buy milk.clone.html",
+ "type": "text",
+ "format": "html",
+ "isExpanded": false
+ },
+ {
+ "isClone": true,
+ "noteId": "Se4NJBgDXgDP",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "6wvo0XkUPMIC",
+ "Zz5qaexattwb",
+ "Se4NJBgDXgDP"
+ ],
+ "title": "Buy some book for Bob",
+ "prefix": null,
+ "dataFileName": "Buy some book for Bob.clone.html",
+ "type": "text",
+ "format": "html",
+ "isExpanded": false
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "Rn1zVLQyfH3M",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "6wvo0XkUPMIC",
+ "Rn1zVLQyfH3M"
+ ],
+ "title": "groceries",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "taskTagNote",
+ "value": "groceries",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "groceries",
+ "children": [
+ {
+ "isClone": true,
+ "noteId": "jjeJHzHpi6ur",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "6wvo0XkUPMIC",
+ "Rn1zVLQyfH3M",
+ "jjeJHzHpi6ur"
+ ],
+ "title": "Buy milk",
+ "prefix": null,
+ "dataFileName": "Buy milk.clone.html",
+ "type": "text",
+ "format": "html",
+ "isExpanded": false
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "YFgSaj76EAlV",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "6wvo0XkUPMIC",
+ "YFgSaj76EAlV"
+ ],
+ "title": "christmas",
+ "notePosition": 30,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "taskTagNote",
+ "value": "christmas",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "christmas",
+ "children": [
+ {
+ "isClone": true,
+ "noteId": "Se4NJBgDXgDP",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "6wvo0XkUPMIC",
+ "YFgSaj76EAlV",
+ "Se4NJBgDXgDP"
+ ],
+ "title": "Buy some book for Bob",
+ "prefix": null,
+ "dataFileName": "Buy some book for Bob.clone.html",
+ "type": "text",
+ "format": "html",
+ "isExpanded": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "REYFb3PQQ7Uu",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "JwXAb88VP2wn",
+ "REYFb3PQQ7Uu"
+ ],
+ "title": "Create Launcher",
+ "notePosition": 60,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "application/javascript;env=backend",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-sidebar",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "relation",
+ "name": "createNewTask",
+ "value": "B8r8cR1CgOXC",
+ "isInheritable": false,
+ "position": 20
+ },
+ {
+ "type": "label",
+ "name": "executeButton",
+ "value": "Create Launcher",
+ "isInheritable": false,
+ "position": 30
+ },
+ {
+ "type": "label",
+ "name": "executeDescription",
+ "value": "This script creates a launcher on the left side bar which can be used to quickly create a new task",
+ "isInheritable": false,
+ "position": 40
+ }
+ ],
+ "dataFileName": "Create Launcher.js",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "mJJ4HfInuU8m",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "mJJ4HfInuU8m"
+ ],
+ "title": "Word count widget",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "application/javascript;env=frontend",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "widget",
+ "value": "",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "dataFileName": "Word count widget.js",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "AoV6PijRs3ZU",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "AoV6PijRs3ZU"
+ ],
+ "title": "Weight Tracker",
+ "notePosition": 40,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "render",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "hideChildrenOverview",
+ "value": "",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "bookmarked",
+ "value": "",
+ "isInheritable": false,
+ "position": 30
+ },
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-tachometer",
+ "isInheritable": false,
+ "position": 40
+ },
+ {
+ "type": "relation",
+ "name": "renderNote",
+ "value": "A32WDOAEaJ6M",
+ "isInheritable": false,
+ "position": 20
+ }
+ ],
+ "attachments": [],
+ "dirFileName": "Weight Tracker",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "A32WDOAEaJ6M",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "AoV6PijRs3ZU",
+ "A32WDOAEaJ6M"
+ ],
+ "title": "Implementation",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "text/html",
+ "attributes": [],
+ "dataFileName": "Implementation.html",
+ "attachments": [],
+ "dirFileName": "Implementation",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "tq1IEPNTcEwE",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "AoV6PijRs3ZU",
+ "A32WDOAEaJ6M",
+ "tq1IEPNTcEwE"
+ ],
+ "title": "JS code",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "application/javascript;env=frontend",
+ "attributes": [],
+ "dataFileName": "JS code.js",
+ "attachments": [],
+ "dirFileName": "JS code",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "piyimQhwfcy5",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "AoV6PijRs3ZU",
+ "A32WDOAEaJ6M",
+ "tq1IEPNTcEwE",
+ "piyimQhwfcy5"
+ ],
+ "title": "chart.js",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "file",
+ "mime": "text/javascript",
+ "attributes": [],
+ "dataFileName": "chart.js",
+ "attachments": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "xRQuuwkaobBM",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM"
+ ],
+ "title": "Statistics",
+ "notePosition": 60,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "book",
+ "mime": "",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "bookZoomLevel",
+ "value": "2",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "attachments": [],
+ "dirFileName": "Statistics",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "GXUcReLM6dSe",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "GXUcReLM6dSe"
+ ],
+ "title": "Attribute count",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "render",
+ "mime": "",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "renderNote",
+ "value": "oLPbgCo7djD7",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "attachments": [],
+ "dirFileName": "Attribute count",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "oLPbgCo7djD7",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "GXUcReLM6dSe",
+ "oLPbgCo7djD7"
+ ],
+ "title": "template",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "text/html",
+ "attributes": [],
+ "dataFileName": "template.html",
+ "attachments": [],
+ "dirFileName": "template",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "AlL9eFopYuHg",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "GXUcReLM6dSe",
+ "oLPbgCo7djD7",
+ "AlL9eFopYuHg"
+ ],
+ "title": "js",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "application/javascript;env=frontend",
+ "attributes": [],
+ "dataFileName": "js.js",
+ "attachments": [],
+ "dirFileName": "js",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "9GZB2MeW51xv",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "GXUcReLM6dSe",
+ "oLPbgCo7djD7",
+ "AlL9eFopYuHg",
+ "9GZB2MeW51xv"
+ ],
+ "title": "renderPieChart",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "application/javascript;env=frontend",
+ "attributes": [],
+ "dataFileName": "renderPieChart.js",
+ "attachments": [],
+ "dirFileName": "renderPieChart",
+ "children": [
+ {
+ "isClone": true,
+ "noteId": "piyimQhwfcy5",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "GXUcReLM6dSe",
+ "oLPbgCo7djD7",
+ "AlL9eFopYuHg",
+ "9GZB2MeW51xv",
+ "piyimQhwfcy5"
+ ],
+ "title": "chart.js",
+ "prefix": null,
+ "dataFileName": "chart.js.clone.html",
+ "type": "text",
+ "format": "html",
+ "isExpanded": false
+ },
+ {
+ "isClone": false,
+ "noteId": "3jaioienOLTR",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "GXUcReLM6dSe",
+ "oLPbgCo7djD7",
+ "AlL9eFopYuHg",
+ "9GZB2MeW51xv",
+ "3jaioienOLTR"
+ ],
+ "title": "chartjs-plugin-datalabels.min.js",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "file",
+ "mime": "text/javascript",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "originalFileName",
+ "value": "chartjs-plugin-datalabels.min.js",
+ "isInheritable": false,
+ "position": 1
+ }
+ ],
+ "dataFileName": "chartjs-plugin-datalabe.min.js",
+ "attachments": []
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "gp03dlXCFkJf",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "GXUcReLM6dSe",
+ "oLPbgCo7djD7",
+ "AlL9eFopYuHg",
+ "gp03dlXCFkJf"
+ ],
+ "title": "renderTable",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "application/javascript;env=frontend",
+ "attributes": [],
+ "dataFileName": "renderTable.js",
+ "attachments": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "SsesNR9Q4LMV",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "SsesNR9Q4LMV"
+ ],
+ "title": "Largest notes",
+ "notePosition": 20,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "render",
+ "mime": "",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "renderNote",
+ "value": "GYJZOEJXBEJ1",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "attachments": [],
+ "dirFileName": "Largest notes",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "GYJZOEJXBEJ1",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "SsesNR9Q4LMV",
+ "GYJZOEJXBEJ1"
+ ],
+ "title": "template",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "text/html",
+ "attributes": [],
+ "dataFileName": "template.html",
+ "attachments": [],
+ "dirFileName": "template",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "BcqIQhG3eQbo",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "SsesNR9Q4LMV",
+ "GYJZOEJXBEJ1",
+ "BcqIQhG3eQbo"
+ ],
+ "title": "js",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "application/javascript;env=frontend",
+ "attributes": [],
+ "dataFileName": "js.js",
+ "attachments": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "LpuRqz4YOvPH",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "LpuRqz4YOvPH"
+ ],
+ "title": "Most edited notes",
+ "notePosition": 30,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "render",
+ "mime": "",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "renderNote",
+ "value": "RpSdzJ8YtGCh",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "attachments": [],
+ "dirFileName": "Most edited notes",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "RpSdzJ8YtGCh",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "LpuRqz4YOvPH",
+ "RpSdzJ8YtGCh"
+ ],
+ "title": "template",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "text/html",
+ "attributes": [],
+ "dataFileName": "template.html",
+ "attachments": [],
+ "dirFileName": "template",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "xANbepYCI3MM",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "LpuRqz4YOvPH",
+ "RpSdzJ8YtGCh",
+ "xANbepYCI3MM"
+ ],
+ "title": "js",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "application/javascript;env=frontend",
+ "attributes": [],
+ "dataFileName": "js.js",
+ "attachments": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "3Pqm2PAdIDoR",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "3Pqm2PAdIDoR"
+ ],
+ "title": "Most linked notes",
+ "notePosition": 40,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "render",
+ "mime": "",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "renderNote",
+ "value": "A9AEOknGTXH7",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "attachments": [],
+ "dirFileName": "Most linked notes",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "A9AEOknGTXH7",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "3Pqm2PAdIDoR",
+ "A9AEOknGTXH7"
+ ],
+ "title": "template",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "text/html",
+ "attributes": [],
+ "dataFileName": "template.html",
+ "attachments": [],
+ "dirFileName": "template",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "qPHo4bcTNQRc",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "3Pqm2PAdIDoR",
+ "A9AEOknGTXH7",
+ "qPHo4bcTNQRc"
+ ],
+ "title": "js",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "application/javascript;env=frontend",
+ "attributes": [],
+ "dataFileName": "js.js",
+ "attachments": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "zaJv5dTikOST",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "zaJv5dTikOST"
+ ],
+ "title": "Note type count",
+ "notePosition": 50,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "render",
+ "mime": "",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "renderNote",
+ "value": "pT0x9fitYGkt",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "attachments": [],
+ "dirFileName": "Note type count",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "pT0x9fitYGkt",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "zaJv5dTikOST",
+ "pT0x9fitYGkt"
+ ],
+ "title": "template",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "text/html",
+ "attributes": [],
+ "dataFileName": "template.html",
+ "attachments": [],
+ "dirFileName": "template",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "svjnZ2JM3B3M",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "zaJv5dTikOST",
+ "pT0x9fitYGkt",
+ "svjnZ2JM3B3M"
+ ],
+ "title": "js",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "application/javascript;env=frontend",
+ "attributes": [],
+ "dataFileName": "js.js",
+ "attachments": [],
+ "dirFileName": "js",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "xwOPidcKMYFp",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "zaJv5dTikOST",
+ "pT0x9fitYGkt",
+ "svjnZ2JM3B3M",
+ "xwOPidcKMYFp"
+ ],
+ "title": "renderTable",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "application/javascript;env=frontend",
+ "attributes": [],
+ "dataFileName": "renderTable.js",
+ "attachments": []
+ },
+ {
+ "isClone": true,
+ "noteId": "9GZB2MeW51xv",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "zaJv5dTikOST",
+ "pT0x9fitYGkt",
+ "svjnZ2JM3B3M",
+ "9GZB2MeW51xv"
+ ],
+ "title": "renderPieChart",
+ "prefix": null,
+ "dataFileName": "renderPieChart.clone.html",
+ "type": "text",
+ "format": "html",
+ "isExpanded": false
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "60hC06fQDFbz",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "60hC06fQDFbz"
+ ],
+ "title": "Most cloned notes",
+ "notePosition": 60,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "render",
+ "mime": "",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "renderNote",
+ "value": "PpBDHBshEH8H",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "attachments": [],
+ "dirFileName": "Most cloned notes",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "PpBDHBshEH8H",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "60hC06fQDFbz",
+ "PpBDHBshEH8H"
+ ],
+ "title": "template",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "text/html",
+ "attributes": [],
+ "dataFileName": "template.html",
+ "attachments": [],
+ "dirFileName": "template",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "kPuAKFW2XFXq",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "xRQuuwkaobBM",
+ "60hC06fQDFbz",
+ "PpBDHBshEH8H",
+ "kPuAKFW2XFXq"
+ ],
+ "title": "js",
+ "notePosition": 0,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "application/javascript;env=frontend",
+ "attributes": [],
+ "dataFileName": "js.js",
+ "attachments": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "sh460UeSCkDG",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "sh460UeSCkDG"
+ ],
+ "title": "Custom request handler",
+ "notePosition": 90,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "application/javascript;env=backend",
+ "attributes": [
+ {
+ "type": "relation",
+ "name": "targetNote",
+ "value": "Ys8DWdyfaZcf",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "customRequestHandler",
+ "value": "create-note",
+ "isInheritable": false,
+ "position": 20
+ }
+ ],
+ "dataFileName": "Custom request handler.js",
+ "attachments": []
+ },
+ {
+ "isClone": false,
+ "noteId": "DAybX9h5jOoG",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "DAybX9h5jOoG"
+ ],
+ "title": "Render note with JSX",
+ "notePosition": 100,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "render",
+ "mime": "",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "widget",
+ "value": "",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "relation",
+ "name": "renderNote",
+ "value": "xzqr5J1V4YwY",
+ "isInheritable": false,
+ "position": 20
+ }
+ ],
+ "attachments": [],
+ "dirFileName": "Render note with JSX",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "xzqr5J1V4YwY",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "DAybX9h5jOoG",
+ "xzqr5J1V4YwY"
+ ],
+ "title": "JSX",
+ "notePosition": 12,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "text/jsx",
+ "attributes": [],
+ "dataFileName": "JSX.jsx",
+ "attachments": [],
+ "dirFileName": "JSX",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "mqDw6BebfE58",
+ "notePath": [
+ "root",
+ "rvaX6hEaQlmk",
+ "KZVWidxicAfn",
+ "DAybX9h5jOoG",
+ "xzqr5J1V4YwY",
+ "mqDw6BebfE58"
+ ],
+ "title": "FormElements",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "code",
+ "mime": "text/jsx",
+ "attributes": [],
+ "dataFileName": "FormElements.jsx",
+ "attachments": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "isClone": false,
+ "noteId": "fhNlr1V1o3d8",
+ "notePath": [
+ "root",
+ "fhNlr1V1o3d8"
+ ],
+ "title": "Miscellaneous",
+ "notePosition": 30,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-dots-horizontal-rounded",
+ "isInheritable": false,
+ "position": 10
+ }
+ ],
+ "format": "html",
+ "attachments": [],
+ "dirFileName": "Miscellaneous",
+ "children": [
+ {
+ "isClone": false,
+ "noteId": "bRQvb9VCkc3t",
+ "notePath": [
+ "root",
+ "fhNlr1V1o3d8",
+ "bRQvb9VCkc3t"
+ ],
+ "title": "Day Note Template",
+ "notePosition": 10,
+ "prefix": null,
+ "isExpanded": false,
+ "type": "text",
+ "mime": "text/html",
+ "attributes": [
+ {
+ "type": "label",
+ "name": "iconClass",
+ "value": "bx bx-notepad",
+ "isInheritable": false,
+ "position": 10
+ },
+ {
+ "type": "label",
+ "name": "excludeFromNoteMap",
+ "value": "",
+ "isInheritable": false,
+ "position": 20
+ }
+ ],
+ "format": "html",
+ "dataFileName": "Day Note Template.html",
+ "attachments": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "noImport": true,
+ "dataFileName": "navigation.html",
+ "notePosition": 1,
+ "isExpanded": false
+ },
+ {
+ "noImport": true,
+ "dataFileName": "index.html",
+ "notePosition": 1,
+ "isExpanded": false
+ },
+ {
+ "noImport": true,
+ "dataFileName": "style.css",
+ "notePosition": 1,
+ "isExpanded": false
+ }
+ ]
}
\ No newline at end of file
diff --git a/apps/edit-docs/demo/navigation.html b/apps/edit-docs/demo/navigation.html
index 8c425fc819..4d1381fe37 100644
--- a/apps/edit-docs/demo/navigation.html
+++ b/apps/edit-docs/demo/navigation.html
@@ -538,6 +538,9 @@
renderPieChart
+ chart.js
+
chartjs-plugin-datalabels.min.js
diff --git a/apps/edit-docs/demo/root/Trilium Demo.html b/apps/edit-docs/demo/root/Trilium Demo.html
index 59f6c6d557..16d1e91c07 100644
--- a/apps/edit-docs/demo/root/Trilium Demo.html
+++ b/apps/edit-docs/demo/root/Trilium Demo.html
@@ -25,9 +25,7 @@
You can play with it, and modify the note content and tree structure as
you wish.
If you need any help, visit triliumnotes.org or
- our GitHub repository
-
-
+ our GitHub repository .
Cleanup
Once you're finished with experimenting and want to cleanup these pages,
@@ -35,7 +33,7 @@
Formatting
Trilium supports classic formatting like italic , bold , bold and italic .
- You can add links pointing to external pages or
+ You can add links pointing to external pages or
Formatting examples .
Lists
@@ -75,9 +73,8 @@
See also other examples like tables ,
checkbox lists, highlighting , code blocks and
- math examples .
+ href="Trilium%20Demo/Formatting%20examples/Checkbox%20lists.html">checkbox lists, highlighting , code blocks ,
+ and math examples .
+
+
chart.js
+
+
+
This is a clone of a note. Go to its primary location .
+
+
+
diff --git a/apps/edit-docs/demo/root/Trilium Demo/Books/Book template.html b/apps/edit-docs/demo/root/Trilium Demo/Books/Book template.html
index b6ece231ed..ac97c2f509 100644
--- a/apps/edit-docs/demo/root/Trilium Demo/Books/Book template.html
+++ b/apps/edit-docs/demo/root/Trilium Demo/Books/Book template.html
@@ -31,7 +31,7 @@
diff --git a/apps/edit-docs/demo/root/Trilium Demo/Scripting examples/Statistics/Attribute count/template/js/renderPieChart/chart.js.clone.html b/apps/edit-docs/demo/root/Trilium Demo/Scripting examples/Statistics/Attribute count/template/js/renderPieChart/chart.js.clone.html
new file mode 100644
index 0000000000..64e4de7c49
--- /dev/null
+++ b/apps/edit-docs/demo/root/Trilium Demo/Scripting examples/Statistics/Attribute count/template/js/renderPieChart/chart.js.clone.html
@@ -0,0 +1,21 @@
+
+
+