├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── feature_request.yml │ └── task.yml ├── actions │ ├── build-electron │ │ └── action.yml │ ├── build-server │ │ └── action.yml │ ├── deploy-to-cloudflare-pages │ │ └── action.yml │ └── report-size │ │ └── action.yml └── workflows │ ├── checks.yml │ ├── codeql.yml │ ├── deploy-docs.yml │ ├── dev.yml │ ├── main-docker.yml │ ├── nightly.yml │ ├── playwright.yml │ ├── release-winget.yml │ ├── release.yml │ ├── unblock_signing.yml │ └── website.yml ├── .gitignore ├── .mailmap ├── .npmrc ├── .nvmrc ├── .nxignore ├── .vscode ├── extensions.json ├── i18n-ally-custom-framework.yml ├── settings.json └── snippets.code-snippets ├── CLAUDE.md ├── CODE_OF_CONDUCT ├── LICENSE ├── README.md ├── SECURITY.md ├── _regroup ├── bin │ ├── create-anonymization-script.ts │ ├── create-icons.sh │ ├── export-schema.sh │ ├── generate-cert.sh │ ├── generate_document.ts │ ├── push-docker-image.sh │ ├── release-flatpack.sh │ ├── release.sh │ ├── translation.sh │ └── tray-icons │ │ ├── bookmarks.svg │ │ ├── build-icons.sh │ │ ├── close.svg │ │ ├── new-note.svg │ │ ├── recents.svg │ │ └── today.svg ├── entitlements.plist ├── eslint.config.js ├── eslint.format.config.js ├── integration-tests │ ├── auth.setup.ts │ ├── duplicate.spec.ts │ ├── example.disabled.ts │ ├── settings.spec.ts │ ├── tree.spec.ts │ └── update_check.spec.ts ├── package.json ├── spec │ ├── etapi │ │ ├── app_info.ts │ │ ├── backup.ts │ │ ├── import.ts │ │ └── notes.ts │ └── support │ │ └── etapi.ts ├── tsconfig.webpack.json └── typedoc.json ├── apps ├── client │ ├── .env │ ├── .env.production │ ├── .swcrc │ ├── eslint.config.mjs │ ├── package.json │ ├── src │ │ ├── asset_path.ts │ │ ├── assets │ │ │ ├── icon.png │ │ │ ├── manifest.webmanifest │ │ │ └── robots.txt │ │ ├── components │ │ │ ├── app_context.ts │ │ │ ├── component.ts │ │ │ ├── entrypoints.ts │ │ │ ├── events.ts │ │ │ ├── main_tree_executors.ts │ │ │ ├── mobile_screen_switcher.ts │ │ │ ├── note_context.ts │ │ │ ├── root_command_executor.ts │ │ │ ├── shortcut_component.ts │ │ │ ├── startup_checks.ts │ │ │ ├── tab_manager.ts │ │ │ ├── touch_bar.ts │ │ │ └── zoom.ts │ │ ├── desktop.ts │ │ ├── entities │ │ │ ├── fattachment.ts │ │ │ ├── fattribute.ts │ │ │ ├── fblob.ts │ │ │ ├── fbranch.ts │ │ │ └── fnote.ts │ │ ├── fonts │ │ │ ├── Inter │ │ │ │ ├── Inter-Italic-VariableFont_opsz,wght.ttf │ │ │ │ ├── Inter-VariableFont_opsz,wght.ttf │ │ │ │ ├── OFL.txt │ │ │ │ └── README.txt │ │ │ ├── JetBrainsMono-Light.woff2 │ │ │ ├── Montserrat-Light.ttf │ │ │ └── Montserrat-SemiBold.ttf │ │ ├── index.ts │ │ ├── layouts │ │ │ ├── desktop_layout.tsx │ │ │ ├── layout_commons.tsx │ │ │ └── mobile_layout.tsx │ │ ├── login.ts │ │ ├── menus │ │ │ ├── context_menu.ts │ │ │ ├── electron_context_menu.ts │ │ │ ├── image_context_menu.ts │ │ │ ├── launcher_context_menu.ts │ │ │ ├── link_context_menu.ts │ │ │ └── tree_context_menu.ts │ │ ├── mobile.ts │ │ ├── runtime.ts │ │ ├── server_types.ts │ │ ├── services │ │ │ ├── attribute_autocomplete.ts │ │ │ ├── attribute_parser.spec.ts │ │ │ ├── attribute_parser.ts │ │ │ ├── attribute_renderer.ts │ │ │ ├── attributes.ts │ │ │ ├── branches.ts │ │ │ ├── bulk_action.ts │ │ │ ├── bundle.ts │ │ │ ├── clipboard.ts │ │ │ ├── clipboard_ext.ts │ │ │ ├── command_registry.ts │ │ │ ├── content_renderer.ts │ │ │ ├── css_class_manager.ts │ │ │ ├── date_notes.ts │ │ │ ├── debounce.ts │ │ │ ├── dialog.ts │ │ │ ├── doc_renderer.ts │ │ │ ├── file_watcher.ts │ │ │ ├── focus.ts │ │ │ ├── froca-interface.ts │ │ │ ├── froca.ts │ │ │ ├── froca_updater.ts │ │ │ ├── frontend_script_api.ts │ │ │ ├── frontend_script_entrypoint.ts │ │ │ ├── glob.ts │ │ │ ├── hoisted_note.ts │ │ │ ├── i18n.spec.ts │ │ │ ├── i18n.ts │ │ │ ├── image.ts │ │ │ ├── import.ts │ │ │ ├── in_app_help.spec.ts │ │ │ ├── in_app_help.ts │ │ │ ├── keyboard_actions.ts │ │ │ ├── link.spec.ts │ │ │ ├── link.ts │ │ │ ├── load_results.ts │ │ │ ├── math.ts │ │ │ ├── mermaid.spec.ts │ │ │ ├── mermaid.ts │ │ │ ├── mime_types.ts │ │ │ ├── note_attribute_cache.ts │ │ │ ├── note_autocomplete.ts │ │ │ ├── note_create.ts │ │ │ ├── note_tooltip.ts │ │ │ ├── note_types.ts │ │ │ ├── open.ts │ │ │ ├── options.ts │ │ │ ├── promoted_attribute_definition_parser.ts │ │ │ ├── protected_session.ts │ │ │ ├── protected_session_holder.ts │ │ │ ├── render.ts │ │ │ ├── resizer.ts │ │ │ ├── script_context.ts │ │ │ ├── search.ts │ │ │ ├── server.ts │ │ │ ├── shortcuts.spec.ts │ │ │ ├── shortcuts.ts │ │ │ ├── spaced_update.ts │ │ │ ├── sync.ts │ │ │ ├── syntax_highlight.ts │ │ │ ├── toast.ts │ │ │ ├── tree.ts │ │ │ ├── utils.spec.ts │ │ │ ├── utils.ts │ │ │ ├── validation_error.ts │ │ │ └── ws.ts │ │ ├── set_password.ts │ │ ├── setup.ts │ │ ├── share.ts │ │ ├── share │ │ │ └── mermaid.ts │ │ ├── stylesheets │ │ │ ├── auth.css │ │ │ ├── calendar.css │ │ │ ├── ckeditor-theme.css │ │ │ ├── llm_chat.css │ │ │ ├── print.css │ │ │ ├── relation_map.css │ │ │ ├── style.css │ │ │ ├── table.css │ │ │ ├── theme-dark.css │ │ │ ├── theme-light.css │ │ │ ├── theme-next-dark.css │ │ │ ├── theme-next-light.css │ │ │ ├── theme-next.css │ │ │ ├── theme-next │ │ │ │ ├── base.css │ │ │ │ ├── dialogs.css │ │ │ │ ├── forms.css │ │ │ │ ├── llm-chat.css │ │ │ │ ├── notes │ │ │ │ │ ├── collections │ │ │ │ │ │ └── table.css │ │ │ │ │ └── text.css │ │ │ │ ├── pages.css │ │ │ │ ├── ribbon.css │ │ │ │ └── shell.css │ │ │ ├── theme.css │ │ │ └── tree.css │ │ ├── test │ │ │ ├── easy-froca.ts │ │ │ └── setup.ts │ │ ├── translations │ │ │ ├── ar │ │ │ │ └── translation.json │ │ │ ├── ca │ │ │ │ └── translation.json │ │ │ ├── cn │ │ │ │ └── translation.json │ │ │ ├── cs │ │ │ │ └── translation.json │ │ │ ├── de │ │ │ │ └── translation.json │ │ │ ├── el │ │ │ │ └── translation.json │ │ │ ├── en │ │ │ │ └── translation.json │ │ │ ├── es │ │ │ │ └── translation.json │ │ │ ├── fa │ │ │ │ └── translation.json │ │ │ ├── fi │ │ │ │ └── translation.json │ │ │ ├── fr │ │ │ │ └── translation.json │ │ │ ├── hr │ │ │ │ └── translation.json │ │ │ ├── hu │ │ │ │ └── translation.json │ │ │ ├── it │ │ │ │ └── translation.json │ │ │ ├── ja │ │ │ │ └── translation.json │ │ │ ├── ko │ │ │ │ └── translation.json │ │ │ ├── nl │ │ │ │ └── translation.json │ │ │ ├── pl │ │ │ │ └── translation.json │ │ │ ├── pt │ │ │ │ └── translation.json │ │ │ ├── pt_br │ │ │ │ └── translation.json │ │ │ ├── ro │ │ │ │ └── translation.json │ │ │ ├── ru │ │ │ │ └── translation.json │ │ │ ├── sl │ │ │ │ └── translation.json │ │ │ ├── sr │ │ │ │ └── translation.json │ │ │ ├── tr │ │ │ │ └── translation.json │ │ │ ├── tw │ │ │ │ └── translation.json │ │ │ ├── uk │ │ │ │ └── translation.json │ │ │ └── vi │ │ │ │ └── translation.json │ │ ├── types-assets.d.ts │ │ ├── types-fancytree.d.ts │ │ ├── types-lib.d.ts │ │ ├── types.d.ts │ │ ├── utils │ │ │ ├── formatters.ts │ │ │ └── mutex.ts │ │ ├── vite-env.d.ts │ │ └── widgets │ │ │ ├── FloatingButtons.css │ │ │ ├── FloatingButtons.tsx │ │ │ ├── FloatingButtonsDefinitions.tsx │ │ │ ├── api_log.css │ │ │ ├── api_log.tsx │ │ │ ├── attachment_detail.ts │ │ │ ├── attribute_widgets │ │ │ └── attribute_detail.ts │ │ │ ├── basic_widget.ts │ │ │ ├── bookmark_buttons.ts │ │ │ ├── bulk_actions │ │ │ ├── BulkAction.tsx │ │ │ ├── abstract_bulk_action.ts │ │ │ ├── execute_script.tsx │ │ │ ├── label │ │ │ │ ├── add_label.tsx │ │ │ │ ├── delete_label.tsx │ │ │ │ ├── rename_label.tsx │ │ │ │ └── update_label_value.tsx │ │ │ ├── note │ │ │ │ ├── delete_note.tsx │ │ │ │ ├── delete_revisions.tsx │ │ │ │ ├── move_note.tsx │ │ │ │ └── rename_note.tsx │ │ │ └── relation │ │ │ │ ├── add_relation.tsx │ │ │ │ ├── delete_relation.tsx │ │ │ │ ├── rename_relation.tsx │ │ │ │ └── update_relation_target.tsx │ │ │ ├── buttons │ │ │ ├── abstract_button.ts │ │ │ ├── ai_chat_button.ts │ │ │ ├── attachments_actions.ts │ │ │ ├── bookmark_folder.ts │ │ │ ├── button_from_note.ts │ │ │ ├── calendar.ts │ │ │ ├── close_pane_button.tsx │ │ │ ├── command_button.ts │ │ │ ├── create_pane_button.tsx │ │ │ ├── global_menu.css │ │ │ ├── global_menu.tsx │ │ │ ├── history_navigation.ts │ │ │ ├── launcher │ │ │ │ ├── abstract_launcher.ts │ │ │ │ ├── note_launcher.ts │ │ │ │ ├── script_launcher.ts │ │ │ │ └── today_launcher.ts │ │ │ ├── left_pane_toggle.tsx │ │ │ ├── move_pane_button.tsx │ │ │ ├── onclick_button.ts │ │ │ ├── open_note_button_widget.ts │ │ │ ├── protected_session_status.ts │ │ │ └── right_dropdown_button.ts │ │ │ ├── close_zen_button.css │ │ │ ├── close_zen_button.tsx │ │ │ ├── collections │ │ │ ├── NoteList.css │ │ │ ├── NoteList.tsx │ │ │ ├── Pagination.tsx │ │ │ ├── board │ │ │ │ ├── api.ts │ │ │ │ ├── card.tsx │ │ │ │ ├── column.tsx │ │ │ │ ├── context_menu.ts │ │ │ │ ├── data.ts │ │ │ │ ├── index.css │ │ │ │ └── index.tsx │ │ │ ├── calendar │ │ │ │ ├── api.ts │ │ │ │ ├── calendar.tsx │ │ │ │ ├── event_builder.spec.ts │ │ │ │ ├── event_builder.ts │ │ │ │ ├── index.css │ │ │ │ ├── index.tsx │ │ │ │ └── utils.ts │ │ │ ├── geomap │ │ │ │ ├── api.ts │ │ │ │ ├── context_menu.ts │ │ │ │ ├── index.css │ │ │ │ ├── index.tsx │ │ │ │ ├── map.tsx │ │ │ │ ├── map_layer.ts │ │ │ │ ├── marker.tsx │ │ │ │ └── styles │ │ │ │ │ ├── colorful │ │ │ │ │ ├── de.json │ │ │ │ │ ├── en.json │ │ │ │ │ ├── nolabel.json │ │ │ │ │ └── style.json │ │ │ │ │ ├── eclipse │ │ │ │ │ ├── de.json │ │ │ │ │ ├── en.json │ │ │ │ │ ├── nolabel.json │ │ │ │ │ └── style.json │ │ │ │ │ ├── graybeard │ │ │ │ │ ├── de.json │ │ │ │ │ ├── en.json │ │ │ │ │ ├── nolabel.json │ │ │ │ │ └── style.json │ │ │ │ │ ├── neutrino │ │ │ │ │ ├── de.json │ │ │ │ │ ├── en.json │ │ │ │ │ ├── nolabel.json │ │ │ │ │ └── style.json │ │ │ │ │ └── shadow │ │ │ │ │ ├── de.json │ │ │ │ │ ├── en.json │ │ │ │ │ ├── nolabel.json │ │ │ │ │ └── style.json │ │ │ ├── interface.ts │ │ │ ├── legacy │ │ │ │ ├── ListOrGridView.css │ │ │ │ └── ListOrGridView.tsx │ │ │ ├── table │ │ │ │ ├── col_editing.ts │ │ │ │ ├── columns.spec.ts │ │ │ │ ├── columns.tsx │ │ │ │ ├── context_menu.ts │ │ │ │ ├── index.css │ │ │ │ ├── index.tsx │ │ │ │ ├── row_editing.ts │ │ │ │ ├── rows.ts │ │ │ │ ├── tabulator.tsx │ │ │ │ └── utils.ts │ │ │ └── view_mode_storage.ts │ │ │ ├── containers │ │ │ ├── container.ts │ │ │ ├── flex_container.ts │ │ │ ├── launcher.ts │ │ │ ├── launcher_container.ts │ │ │ ├── left_pane_container.ts │ │ │ ├── right_pane_container.ts │ │ │ ├── root_container.ts │ │ │ ├── scrolling_container.ts │ │ │ └── split_note_container.ts │ │ │ ├── dialogs │ │ │ ├── about.tsx │ │ │ ├── add_link.tsx │ │ │ ├── branch_prefix.tsx │ │ │ ├── bulk_actions.css │ │ │ ├── bulk_actions.tsx │ │ │ ├── call_to_action.tsx │ │ │ ├── call_to_action_definitions.ts │ │ │ ├── clone_to.tsx │ │ │ ├── confirm.tsx │ │ │ ├── delete_notes.tsx │ │ │ ├── export.css │ │ │ ├── export.tsx │ │ │ ├── help.tsx │ │ │ ├── import.tsx │ │ │ ├── include_note.tsx │ │ │ ├── incorrect_cpu_arch.tsx │ │ │ ├── info.tsx │ │ │ ├── jump_to_note.tsx │ │ │ ├── markdown_import.tsx │ │ │ ├── move_to.tsx │ │ │ ├── note_type_chooser.tsx │ │ │ ├── password_not_set.tsx │ │ │ ├── popup_editor.ts │ │ │ ├── prompt.tsx │ │ │ ├── protected_session_password.tsx │ │ │ ├── recent_changes.tsx │ │ │ ├── revisions.tsx │ │ │ ├── sort_child_notes.tsx │ │ │ └── upload_attachments.tsx │ │ │ ├── find.ts │ │ │ ├── find_in_code.ts │ │ │ ├── find_in_html.ts │ │ │ ├── find_in_text.ts │ │ │ ├── highlights_list.spec.ts │ │ │ ├── highlights_list.ts │ │ │ ├── icon_list.ts │ │ │ ├── llm_chat │ │ │ ├── communication.ts │ │ │ ├── index.ts │ │ │ ├── llm_chat_panel.ts │ │ │ ├── message_processor.ts │ │ │ ├── types.ts │ │ │ ├── ui.ts │ │ │ ├── utils.ts │ │ │ └── validation.ts │ │ │ ├── llm_chat_panel.ts │ │ │ ├── mobile_widgets │ │ │ ├── mobile_detail_menu.tsx │ │ │ ├── screen_container.ts │ │ │ ├── sidebar_container.ts │ │ │ └── toggle_sidebar_button.tsx │ │ │ ├── note_context_aware_widget.ts │ │ │ ├── note_detail.ts │ │ │ ├── note_icon.css │ │ │ ├── note_icon.tsx │ │ │ ├── note_map.ts │ │ │ ├── note_title.css │ │ │ ├── note_title.tsx │ │ │ ├── note_tree.ts │ │ │ ├── note_wrapper.ts │ │ │ ├── promoted_attributes.ts │ │ │ ├── quick_search.ts │ │ │ ├── quick_search_launcher.ts │ │ │ ├── react │ │ │ ├── ActionButton.tsx │ │ │ ├── Admonition.tsx │ │ │ ├── Alert.tsx │ │ │ ├── Badge.tsx │ │ │ ├── Button.tsx │ │ │ ├── CKEditor.tsx │ │ │ ├── Column.tsx │ │ │ ├── Dropdown.tsx │ │ │ ├── FormCheckbox.tsx │ │ │ ├── FormDropdownList.tsx │ │ │ ├── FormFileUpload.tsx │ │ │ ├── FormGroup.tsx │ │ │ ├── FormList.css │ │ │ ├── FormList.tsx │ │ │ ├── FormRadioGroup.tsx │ │ │ ├── FormSelect.tsx │ │ │ ├── FormText.tsx │ │ │ ├── FormTextArea.tsx │ │ │ ├── FormTextBox.tsx │ │ │ ├── FormToggle.css │ │ │ ├── FormToggle.tsx │ │ │ ├── HelpButton.tsx │ │ │ ├── HelpRemoveButtons.tsx │ │ │ ├── Icon.tsx │ │ │ ├── KeyboardShortcut.tsx │ │ │ ├── LinkButton.tsx │ │ │ ├── LoadingSpinner.tsx │ │ │ ├── Modal.tsx │ │ │ ├── NoteAutocomplete.tsx │ │ │ ├── NoteLink.tsx │ │ │ ├── NoteList.tsx │ │ │ ├── RawHtml.tsx │ │ │ ├── TouchBar.tsx │ │ │ ├── hooks.tsx │ │ │ └── react_utils.tsx │ │ │ ├── ribbon │ │ │ ├── BasicPropertiesTab.tsx │ │ │ ├── CollectionPropertiesTab.tsx │ │ │ ├── EditedNotesTab.tsx │ │ │ ├── FilePropertiesTab.tsx │ │ │ ├── FormattingToolbar.tsx │ │ │ ├── ImagePropertiesTab.tsx │ │ │ ├── InheritedAttributesTab.tsx │ │ │ ├── NoteActions.tsx │ │ │ ├── NoteInfoTab.tsx │ │ │ ├── NoteMapTab.tsx │ │ │ ├── NotePathsTab.tsx │ │ │ ├── NotePropertiesTab.tsx │ │ │ ├── OwnedAttributesTab.tsx │ │ │ ├── Ribbon.tsx │ │ │ ├── ScriptTab.tsx │ │ │ ├── SearchDefinitionOptions.tsx │ │ │ ├── SearchDefinitionTab.tsx │ │ │ ├── SimilarNotesTab.tsx │ │ │ ├── collection-properties-config.ts │ │ │ ├── components │ │ │ │ └── AttributeEditor.tsx │ │ │ ├── ribbon-interface.ts │ │ │ └── style.css │ │ │ ├── right_panel_widget.ts │ │ │ ├── scroll_padding.tsx │ │ │ ├── search_result.css │ │ │ ├── search_result.tsx │ │ │ ├── shared_info.tsx │ │ │ ├── spacer.ts │ │ │ ├── sql_result.css │ │ │ ├── sql_result.tsx │ │ │ ├── sql_table_schemas.css │ │ │ ├── sql_table_schemas.tsx │ │ │ ├── sync_status.ts │ │ │ ├── tab_row.ts │ │ │ ├── title_bar_buttons.css │ │ │ ├── title_bar_buttons.tsx │ │ │ ├── toc.ts │ │ │ ├── type_widgets │ │ │ ├── abstract_code_type_widget.ts │ │ │ ├── abstract_split_type_widget.ts │ │ │ ├── abstract_svg_split_type_widget.ts │ │ │ ├── abstract_text_type_widget.ts │ │ │ ├── ai_chat.ts │ │ │ ├── attachment_detail.ts │ │ │ ├── attachment_list.ts │ │ │ ├── book.ts │ │ │ ├── canvas.ts │ │ │ ├── canvas_el.tsx │ │ │ ├── ckeditor │ │ │ │ ├── config.ts │ │ │ │ ├── mobile_editor_toolbar.css │ │ │ │ ├── mobile_editor_toolbar.tsx │ │ │ │ ├── snippets.ts │ │ │ │ ├── toolbar.spec.ts │ │ │ │ └── toolbar.ts │ │ │ ├── content │ │ │ │ └── backend_log.ts │ │ │ ├── content_widget.tsx │ │ │ ├── doc.ts │ │ │ ├── editable_code.ts │ │ │ ├── editable_text.ts │ │ │ ├── empty.ts │ │ │ ├── file.ts │ │ │ ├── image.ts │ │ │ ├── mermaid.ts │ │ │ ├── mind_map.ts │ │ │ ├── none.ts │ │ │ ├── note_map.ts │ │ │ ├── options │ │ │ │ ├── advanced.tsx │ │ │ │ ├── ai_settings.tsx │ │ │ │ ├── appearance.tsx │ │ │ │ ├── backup.tsx │ │ │ │ ├── code_notes.css │ │ │ │ ├── code_notes.tsx │ │ │ │ ├── components │ │ │ │ │ ├── AutoReadOnlySize.tsx │ │ │ │ │ ├── CheckboxList.tsx │ │ │ │ │ ├── OptionsRow.css │ │ │ │ │ ├── OptionsRow.tsx │ │ │ │ │ ├── OptionsSection.tsx │ │ │ │ │ ├── RelatedSettings.tsx │ │ │ │ │ └── TimeSelector.tsx │ │ │ │ ├── etapi.tsx │ │ │ │ ├── i18n.tsx │ │ │ │ ├── images.tsx │ │ │ │ ├── multi_factor_authentication.tsx │ │ │ │ ├── other.tsx │ │ │ │ ├── password.tsx │ │ │ │ ├── samples │ │ │ │ │ └── code_note.txt │ │ │ │ ├── shortcuts.tsx │ │ │ │ ├── spellcheck.tsx │ │ │ │ ├── sync.tsx │ │ │ │ └── text_notes.tsx │ │ │ ├── protected_session.ts │ │ │ ├── read_only_code.ts │ │ │ ├── read_only_text.ts │ │ │ ├── relation_map.ts │ │ │ ├── render.ts │ │ │ ├── type_widget.ts │ │ │ └── web_view.ts │ │ │ ├── watched_file_update_status.ts │ │ │ └── widget_utils.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── vite.config.mts ├── db-compare │ ├── README.md │ ├── eslint.config.mjs │ ├── package.json │ ├── src │ │ ├── compare.ts │ │ └── sql.ts │ ├── tsconfig.app.json │ └── tsconfig.json ├── desktop │ ├── e2e │ │ ├── example.spec.ts │ │ └── support.ts │ ├── electron-forge │ │ ├── app-icon │ │ │ ├── icon.icns │ │ │ ├── icon.ico │ │ │ ├── ios │ │ │ │ └── apple-touch-icon.png │ │ │ └── png │ │ │ │ ├── 1000x1000.png │ │ │ │ ├── 1024x1024.png │ │ │ │ ├── 128x128.png │ │ │ │ ├── 16x16-dev.png │ │ │ │ ├── 16x16.png │ │ │ │ ├── 256x256-dev.png │ │ │ │ ├── 256x256.png │ │ │ │ ├── 32x32-dev.png │ │ │ │ ├── 32x32.png │ │ │ │ └── 512x512.png │ │ ├── desktop.ejs │ │ ├── forge.config.ts │ │ ├── setup-icon │ │ │ ├── setup-banner.gif │ │ │ └── setup.ico │ │ ├── sign-windows.cjs │ │ ├── trilium-no-cert-check.bat │ │ ├── trilium-no-cert-check.sh │ │ ├── trilium-portable.bat │ │ ├── trilium-portable.sh │ │ ├── trilium-safe-mode.bat │ │ └── trilium-safe-mode.sh │ ├── eslint.config.mjs │ ├── package.json │ ├── playwright.config.ts │ ├── scripts │ │ └── build.ts │ ├── spec │ │ └── build-checks │ │ │ └── artifacts.spec.ts │ ├── src │ │ ├── app-info.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── images │ │ │ │ └── tray │ │ │ │ ├── bookmarksTemplate-inverted.png │ │ │ │ ├── bookmarksTemplate-inverted@1.25x.png │ │ │ │ ├── bookmarksTemplate-inverted@1.5x.png │ │ │ │ ├── bookmarksTemplate-inverted@2x.png │ │ │ │ ├── bookmarksTemplate.png │ │ │ │ ├── bookmarksTemplate@1.25x.png │ │ │ │ ├── bookmarksTemplate@1.5x.png │ │ │ │ ├── bookmarksTemplate@2x.png │ │ │ │ ├── closeTemplate-inverted.png │ │ │ │ ├── closeTemplate-inverted@1.25x.png │ │ │ │ ├── closeTemplate-inverted@1.5x.png │ │ │ │ ├── closeTemplate-inverted@2x.png │ │ │ │ ├── closeTemplate.png │ │ │ │ ├── closeTemplate@1.25x.png │ │ │ │ ├── closeTemplate@1.5x.png │ │ │ │ ├── closeTemplate@2x.png │ │ │ │ ├── icon-blackTemplate.png │ │ │ │ ├── icon-blackTemplate@1.25x.png │ │ │ │ ├── icon-blackTemplate@1.5x.png │ │ │ │ ├── icon-blackTemplate@2x.png │ │ │ │ ├── icon-color.png │ │ │ │ ├── icon-color@1.25x.png │ │ │ │ ├── icon-color@1.5x.png │ │ │ │ ├── icon-color@2x.png │ │ │ │ ├── icon-purple.png │ │ │ │ ├── icon-purple@1.25x.png │ │ │ │ ├── icon-purple@1.5x.png │ │ │ │ ├── icon-purple@2x.png │ │ │ │ ├── new-noteTemplate-inverted.png │ │ │ │ ├── new-noteTemplate-inverted@1.25x.png │ │ │ │ ├── new-noteTemplate-inverted@1.5x.png │ │ │ │ ├── new-noteTemplate-inverted@2x.png │ │ │ │ ├── new-noteTemplate.png │ │ │ │ ├── new-noteTemplate@1.25x.png │ │ │ │ ├── new-noteTemplate@1.5x.png │ │ │ │ ├── new-noteTemplate@2x.png │ │ │ │ ├── new-windowTemplate-inverted.png │ │ │ │ ├── new-windowTemplate-inverted@1.25x.png │ │ │ │ ├── new-windowTemplate-inverted@1.5x.png │ │ │ │ ├── new-windowTemplate-inverted@2x.png │ │ │ │ ├── new-windowTemplate.png │ │ │ │ ├── new-windowTemplate@1.25x.png │ │ │ │ ├── new-windowTemplate@1.5x.png │ │ │ │ ├── new-windowTemplate@2x.png │ │ │ │ ├── recentsTemplate-inverted.png │ │ │ │ ├── recentsTemplate-inverted@1.25x.png │ │ │ │ ├── recentsTemplate-inverted@1.5x.png │ │ │ │ ├── recentsTemplate-inverted@2x.png │ │ │ │ ├── recentsTemplate.png │ │ │ │ ├── recentsTemplate@1.25x.png │ │ │ │ ├── recentsTemplate@1.5x.png │ │ │ │ ├── recentsTemplate@2x.png │ │ │ │ ├── todayTemplate-inverted.png │ │ │ │ ├── todayTemplate-inverted@1.25x.png │ │ │ │ ├── todayTemplate-inverted@1.5x.png │ │ │ │ ├── todayTemplate-inverted@2x.png │ │ │ │ ├── todayTemplate.png │ │ │ │ ├── todayTemplate@1.25x.png │ │ │ │ ├── todayTemplate@1.5x.png │ │ │ │ └── todayTemplate@2x.png │ │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.forge.json │ ├── tsconfig.json │ └── vitest.build.config.mts ├── dump-db │ ├── README.md │ ├── eslint.config.mjs │ ├── package.json │ ├── src │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── inc │ │ │ ├── data_key.ts │ │ │ ├── decrypt.ts │ │ │ ├── dump.ts │ │ │ ├── extension.ts │ │ │ └── sql.ts │ │ └── main.ts │ ├── tsconfig.app.json │ └── tsconfig.json ├── edit-docs │ ├── demo │ │ ├── !!!meta.json │ │ ├── index.html │ │ ├── navigation.html │ │ ├── root │ │ │ ├── Journal.dat │ │ │ ├── Trilium Demo.html │ │ │ ├── Trilium Demo │ │ │ │ ├── Books │ │ │ │ │ ├── Book template.html │ │ │ │ │ ├── Book template │ │ │ │ │ │ └── Highlights.html │ │ │ │ │ ├── Reviews │ │ │ │ │ │ └── The Mechanical.clone.html │ │ │ │ │ └── To read.html │ │ │ │ ├── Formatting examples │ │ │ │ │ ├── Checkbox lists.html │ │ │ │ │ ├── Code blocks.html │ │ │ │ │ ├── Highlighting.html │ │ │ │ │ ├── Math.html │ │ │ │ │ └── School schedule.html │ │ │ │ ├── Inbox.html │ │ │ │ ├── Inbox │ │ │ │ │ ├── Book to read.html │ │ │ │ │ ├── Grocery list for today.html │ │ │ │ │ ├── The Last Question.html │ │ │ │ │ └── The Last Question │ │ │ │ │ │ └── The Last Question by Issac.pdf │ │ │ │ ├── Journal.html │ │ │ │ ├── Journal │ │ │ │ │ ├── 2021 │ │ │ │ │ │ ├── 11 - November │ │ │ │ │ │ │ ├── 28 - Tuesday.html │ │ │ │ │ │ │ └── 28 - Tuesday │ │ │ │ │ │ │ │ ├── Christmas gift ideas.html │ │ │ │ │ │ │ │ ├── Phone call about work project.html │ │ │ │ │ │ │ │ └── Trusted timestamping.html │ │ │ │ │ │ ├── 12 - December │ │ │ │ │ │ │ ├── 18 - Monday.html │ │ │ │ │ │ │ ├── 18 - Monday │ │ │ │ │ │ │ │ ├── Meeting minutes.html │ │ │ │ │ │ │ │ ├── Photos from the trip │ │ │ │ │ │ │ │ │ ├── 01.jpeg │ │ │ │ │ │ │ │ │ ├── 02.jpeg │ │ │ │ │ │ │ │ │ ├── 03.jpeg │ │ │ │ │ │ │ │ │ ├── 04.jpeg │ │ │ │ │ │ │ │ │ ├── 05.jpeg │ │ │ │ │ │ │ │ │ ├── 06.jpeg │ │ │ │ │ │ │ │ │ ├── 07.jpeg │ │ │ │ │ │ │ │ │ ├── 08.jpeg │ │ │ │ │ │ │ │ │ ├── 09.jpeg │ │ │ │ │ │ │ │ │ ├── 10.jpeg │ │ │ │ │ │ │ │ │ ├── 11.jpeg │ │ │ │ │ │ │ │ │ └── 12.jpeg │ │ │ │ │ │ │ │ └── TODO - Send invites for christ.html │ │ │ │ │ │ │ ├── 19 - Tuesday.html │ │ │ │ │ │ │ ├── 19 - Tuesday │ │ │ │ │ │ │ │ └── DONE - Dentist appointment.html │ │ │ │ │ │ │ ├── 20 - Wednesday.html │ │ │ │ │ │ │ ├── 21 - Thursday.html │ │ │ │ │ │ │ ├── 21 - Thursday │ │ │ │ │ │ │ │ ├── Christmas shopping.html │ │ │ │ │ │ │ │ └── Office party.html │ │ │ │ │ │ │ ├── 22 - Friday.html │ │ │ │ │ │ │ ├── 22 - Friday │ │ │ │ │ │ │ │ ├── Christmas shopping.html │ │ │ │ │ │ │ │ ├── The Mechanical.html │ │ │ │ │ │ │ │ └── The Mechanical │ │ │ │ │ │ │ │ │ └── Highlights.html │ │ │ │ │ │ │ ├── 23 - Saturday.html │ │ │ │ │ │ │ ├── 24 - Sunday - Christmas Eve!.html │ │ │ │ │ │ │ ├── 24 - Sunday - Christmas Eve! │ │ │ │ │ │ │ │ ├── DONE - Buy a board game fo.jpg │ │ │ │ │ │ │ │ ├── DONE - Buy a board game for Al.html │ │ │ │ │ │ │ │ └── TODO - Buy milk.html │ │ │ │ │ │ │ └── 30 - Thursday.html │ │ │ │ │ │ ├── Epics.html │ │ │ │ │ │ └── Epics │ │ │ │ │ │ │ ├── Christmas.html │ │ │ │ │ │ │ ├── Christmas │ │ │ │ │ │ │ ├── Christmas dinner.html │ │ │ │ │ │ │ ├── Shopping │ │ │ │ │ │ │ │ └── 28. 11. 2017 - Christmas gift ideas.clone.html │ │ │ │ │ │ │ └── Vacation days.html │ │ │ │ │ │ │ └── Vacation.html │ │ │ │ │ └── Day template.html │ │ │ │ ├── Note Types │ │ │ │ │ ├── Canvas.json │ │ │ │ │ ├── Canvas_canvas-export.svg │ │ │ │ │ ├── Geo Map (The Seven Wonder.json │ │ │ │ │ ├── Geo Map (The Seven Wonders of the World) │ │ │ │ │ │ ├── Chichén Itzá, Mexico.html │ │ │ │ │ │ ├── Christ the Redeemer, Brazil.html │ │ │ │ │ │ ├── Machu Picchu, Peru.html │ │ │ │ │ │ ├── Petra, Jordan.html │ │ │ │ │ │ ├── The Colosseum, Rome, Italy.html │ │ │ │ │ │ ├── The Great Wall of China.html │ │ │ │ │ │ └── The Taj Mahal, India.html │ │ │ │ │ ├── Mermaid Diagrams │ │ │ │ │ │ ├── Bar chart.txt │ │ │ │ │ │ ├── Bar chart_mermaid-export.svg │ │ │ │ │ │ ├── C4.txt │ │ │ │ │ │ ├── C4_mermaid-export.svg │ │ │ │ │ │ ├── Class.txt │ │ │ │ │ │ ├── Class_mermaid-export.svg │ │ │ │ │ │ ├── Entity Relationship.txt │ │ │ │ │ │ ├── Entity Relationship_mermai.svg │ │ │ │ │ │ ├── Flow (ELK).txt │ │ │ │ │ │ ├── Flow (ELK)_mermaid-export.svg │ │ │ │ │ │ ├── Flow.txt │ │ │ │ │ │ ├── Flow_mermaid-export.svg │ │ │ │ │ │ ├── Gantt.txt │ │ │ │ │ │ ├── Gantt_mermaid-export.svg │ │ │ │ │ │ ├── Git.txt │ │ │ │ │ │ ├── Git_mermaid-export.svg │ │ │ │ │ │ ├── Journey.txt │ │ │ │ │ │ ├── Journey_mermaid-export.svg │ │ │ │ │ │ ├── Mind Map.txt │ │ │ │ │ │ ├── Mind Map_mermaid-export.svg │ │ │ │ │ │ ├── Pie.txt │ │ │ │ │ │ ├── Pie_mermaid-export.svg │ │ │ │ │ │ ├── Sequence.txt │ │ │ │ │ │ ├── Sequence_mermaid-export.svg │ │ │ │ │ │ ├── State.txt │ │ │ │ │ │ └── State_mermaid-export.svg │ │ │ │ │ ├── Mind Map.json │ │ │ │ │ └── Mind Map_mindmap-export.svg │ │ │ │ ├── Scripting examples │ │ │ │ │ ├── Custom request handler.js │ │ │ │ │ ├── Statistics │ │ │ │ │ │ ├── Attribute count │ │ │ │ │ │ │ ├── template.html │ │ │ │ │ │ │ └── template │ │ │ │ │ │ │ │ ├── js.js │ │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── renderPieChart.js │ │ │ │ │ │ │ │ ├── renderPieChart │ │ │ │ │ │ │ │ ├── chart.js.clone.html │ │ │ │ │ │ │ │ ├── chartjs-plugin-datalabe.min.js │ │ │ │ │ │ │ │ └── chartjs-plugin-datalabels.min.js │ │ │ │ │ │ │ │ │ └── chart.js.clone.html │ │ │ │ │ │ │ │ └── renderTable.js │ │ │ │ │ │ ├── Largest notes │ │ │ │ │ │ │ ├── template.html │ │ │ │ │ │ │ └── template │ │ │ │ │ │ │ │ └── js.js │ │ │ │ │ │ ├── Most cloned notes │ │ │ │ │ │ │ ├── template.html │ │ │ │ │ │ │ └── template │ │ │ │ │ │ │ │ └── js.js │ │ │ │ │ │ ├── Most edited notes │ │ │ │ │ │ │ ├── template.html │ │ │ │ │ │ │ └── template │ │ │ │ │ │ │ │ └── js.js │ │ │ │ │ │ ├── Most linked notes │ │ │ │ │ │ │ ├── template.html │ │ │ │ │ │ │ └── template │ │ │ │ │ │ │ │ └── js.js │ │ │ │ │ │ └── Note type count │ │ │ │ │ │ │ ├── template.html │ │ │ │ │ │ │ └── template │ │ │ │ │ │ │ ├── js.js │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── renderPieChart.clone.html │ │ │ │ │ │ │ └── renderTable.js │ │ │ │ │ ├── Task manager.html │ │ │ │ │ ├── Task manager │ │ │ │ │ │ ├── Create Launcher.js │ │ │ │ │ │ ├── Done │ │ │ │ │ │ │ ├── Buy a board game for Alice.html │ │ │ │ │ │ │ ├── Buy a board game for Alice.jpg │ │ │ │ │ │ │ ├── Dentist appointment.html │ │ │ │ │ │ │ └── Get a gym membership.html │ │ │ │ │ │ ├── Implementation │ │ │ │ │ │ │ ├── CSS.css │ │ │ │ │ │ │ ├── attribute changed.js │ │ │ │ │ │ │ ├── attribute changed │ │ │ │ │ │ │ │ └── reconcileAssignments.js │ │ │ │ │ │ │ ├── createNewTask.js │ │ │ │ │ │ │ └── task template.html │ │ │ │ │ │ ├── Locations │ │ │ │ │ │ │ ├── gym.html │ │ │ │ │ │ │ ├── mall │ │ │ │ │ │ │ │ ├── Buy some book for Bob.html │ │ │ │ │ │ │ │ └── Buy some book for Bob │ │ │ │ │ │ │ │ │ └── Maybe Black Swan.html │ │ │ │ │ │ │ ├── tesco │ │ │ │ │ │ │ │ └── Buy milk.html │ │ │ │ │ │ │ └── work │ │ │ │ │ │ │ │ └── Send invites for christmas par.html │ │ │ │ │ │ ├── TODO │ │ │ │ │ │ │ ├── Buy milk.clone.html │ │ │ │ │ │ │ ├── Buy some book for Bob.clone.html │ │ │ │ │ │ │ └── Send invites for christmas party.clone.html │ │ │ │ │ │ └── Tags │ │ │ │ │ │ │ ├── christmas │ │ │ │ │ │ │ └── Buy some book for Bob.clone.html │ │ │ │ │ │ │ ├── groceries │ │ │ │ │ │ │ └── Buy milk.clone.html │ │ │ │ │ │ │ ├── health.html │ │ │ │ │ │ │ └── shopping │ │ │ │ │ │ │ ├── Buy milk.clone.html │ │ │ │ │ │ │ └── Buy some book for Bob.clone.html │ │ │ │ │ ├── Weight Tracker │ │ │ │ │ │ ├── Implementation.html │ │ │ │ │ │ └── Implementation │ │ │ │ │ │ │ ├── JS code.js │ │ │ │ │ │ │ └── JS code │ │ │ │ │ │ │ └── chart.js │ │ │ │ │ └── Word count widget.js │ │ │ │ ├── Steel Blue.css │ │ │ │ ├── Steel Blue │ │ │ │ │ ├── eb-garamond-v9-latin-reg.woff2 │ │ │ │ │ └── raleway-v12-latin-regula.woff2 │ │ │ │ ├── Tech.html │ │ │ │ ├── Tech │ │ │ │ │ ├── Linux │ │ │ │ │ │ ├── Bash scripting.html │ │ │ │ │ │ ├── Bash scripting │ │ │ │ │ │ │ ├── Bash startup modes.html │ │ │ │ │ │ │ └── While loop.html │ │ │ │ │ │ ├── History.html │ │ │ │ │ │ ├── Ubuntu.html │ │ │ │ │ │ └── Ubuntu │ │ │ │ │ │ │ └── Unity shortcuts.html │ │ │ │ │ ├── Node.js │ │ │ │ │ │ ├── Intro.html │ │ │ │ │ │ ├── Overview.html │ │ │ │ │ │ ├── Overview │ │ │ │ │ │ │ ├── History.html │ │ │ │ │ │ │ ├── Industry support.html │ │ │ │ │ │ │ └── Platform architecture.html │ │ │ │ │ │ └── Releases.html │ │ │ │ │ ├── Programming │ │ │ │ │ │ ├── Bash scripting.clone.html │ │ │ │ │ │ └── Java.html │ │ │ │ │ └── Security │ │ │ │ │ │ └── Trusted timestamping.clone.html │ │ │ │ └── Work │ │ │ │ │ ├── HR.html │ │ │ │ │ ├── Processes.html │ │ │ │ │ └── Projects.html │ │ │ └── Trilium Demo_icon-color.svg │ │ └── style.css │ ├── eslint.config.mjs │ ├── package.json │ ├── src │ │ ├── edit-demo.ts │ │ ├── edit-docs.ts │ │ └── utils.ts │ ├── tsconfig.app.json │ └── tsconfig.json ├── server-e2e │ ├── eslint.config.mjs │ ├── package.json │ ├── playwright.config.ts │ ├── src │ │ ├── ai_settings.spec.ts │ │ ├── help.spec.ts │ │ ├── i18n.spec.ts │ │ ├── layout │ │ │ ├── open_note_and_activate.spec.ts │ │ │ └── tab_bar.spec.ts │ │ ├── llm_chat.spec.ts │ │ ├── note_types │ │ │ ├── code.spec.ts │ │ │ ├── mermaid.spec.ts │ │ │ ├── mindmap.spec.ts │ │ │ ├── note_map.spec.ts │ │ │ └── text.spec.ts │ │ ├── shared_notes.spec.ts │ │ └── support │ │ │ └── app.ts │ └── tsconfig.json ├── server │ ├── .gitignore │ ├── Dockerfile │ ├── Dockerfile.alpine │ ├── Dockerfile.alpine.rootless │ ├── Dockerfile.rootless │ ├── docker │ │ ├── nginx.conf │ │ ├── package.json │ │ └── pnpm-workspace.yaml │ ├── eslint.config.mjs │ ├── package.json │ ├── rootless-entrypoint.sh │ ├── scripts │ │ ├── build-server.sh │ │ └── build.ts │ ├── spec │ │ ├── build-checks │ │ │ └── artifacts.spec.ts │ │ ├── db │ │ │ ├── config.ini │ │ │ ├── document.db │ │ │ ├── document_v214.db │ │ │ └── document_v214_migrated.db │ │ ├── etapi │ │ │ ├── api-metrics.spec.ts │ │ │ ├── app-info.spec.ts │ │ │ ├── attachment-content.spec.ts │ │ │ ├── basic-auth.spec.ts │ │ │ ├── create-backup.spec.ts │ │ │ ├── create-entities.spec.ts │ │ │ ├── delete-entities.spec.ts │ │ │ ├── etapi-metrics.spec.ts │ │ │ ├── export-note-subtree.spec.ts │ │ │ ├── get-date-notes.spec.ts │ │ │ ├── get-inherited-attribute-cloned.spec.ts │ │ │ ├── get-inherited-attribute.spec.ts │ │ │ ├── import-zip.spec.ts │ │ │ ├── no-token.spec.ts │ │ │ ├── note-content.spec.ts │ │ │ ├── other.spec.ts │ │ │ ├── patch-attachment.spec.ts │ │ │ ├── patch-attribute.spec.ts │ │ │ ├── patch-branch.spec.ts │ │ │ ├── patch-note.spec.ts │ │ │ ├── post-revision.spec.ts │ │ │ ├── search.spec.ts │ │ │ └── utils.ts │ │ └── setup.ts │ ├── src │ │ ├── anonymize.ts │ │ ├── app.ts │ │ ├── assets │ │ │ ├── api-openapi.yaml │ │ │ ├── config-sample.ini │ │ │ ├── db │ │ │ │ ├── TODO.txt │ │ │ │ ├── demo.zip │ │ │ │ ├── image-deleted.png │ │ │ │ └── schema.sql │ │ │ ├── doc_notes │ │ │ │ ├── cn │ │ │ │ │ ├── hidden.html │ │ │ │ │ ├── launchbar_command_launcher.html │ │ │ │ │ ├── launchbar_history_navigation.html │ │ │ │ │ ├── launchbar_intro.html │ │ │ │ │ ├── launchbar_note_launcher.html │ │ │ │ │ ├── launchbar_script_launcher.html │ │ │ │ │ ├── launchbar_spacer.html │ │ │ │ │ ├── launchbar_widget_launcher.html │ │ │ │ │ ├── share.html │ │ │ │ │ └── user_hidden.html │ │ │ │ └── en │ │ │ │ │ ├── User Guide │ │ │ │ │ ├── !!!meta.json │ │ │ │ │ └── User Guide │ │ │ │ │ │ ├── AI │ │ │ │ │ │ ├── 1_AI Provider Information_im.png │ │ │ │ │ │ ├── 1_Introduction_image.png │ │ │ │ │ │ ├── 2_Introduction_image.png │ │ │ │ │ │ ├── 3_Introduction_image.png │ │ │ │ │ │ ├── 4_Introduction_image.png │ │ │ │ │ │ ├── 5_Introduction_image.png │ │ │ │ │ │ ├── 6_Introduction_image.png │ │ │ │ │ │ ├── 7_Introduction_image.png │ │ │ │ │ │ ├── 8_Introduction_image.png │ │ │ │ │ │ ├── 9_Introduction_image.png │ │ │ │ │ │ ├── AI Provider Information.html │ │ │ │ │ │ ├── AI Provider Information │ │ │ │ │ │ │ ├── Anthropic.html │ │ │ │ │ │ │ ├── Ollama │ │ │ │ │ │ │ │ ├── 1_Installing Ollama_image.png │ │ │ │ │ │ │ │ ├── 2_Installing Ollama_image.png │ │ │ │ │ │ │ │ ├── 3_Installing Ollama_image.png │ │ │ │ │ │ │ │ ├── 4_Installing Ollama_image.png │ │ │ │ │ │ │ │ ├── 5_Installing Ollama_image.png │ │ │ │ │ │ │ │ ├── Installing Ollama.html │ │ │ │ │ │ │ │ └── Installing Ollama_image.png │ │ │ │ │ │ │ └── OpenAI.html │ │ │ │ │ │ ├── AI Provider Information_im.png │ │ │ │ │ │ ├── Introduction.html │ │ │ │ │ │ └── Introduction_image.png │ │ │ │ │ │ ├── Advanced Usage │ │ │ │ │ │ ├── 1_Metrics_image.png │ │ │ │ │ │ ├── 1_Note Map (Link map, Tree m.png │ │ │ │ │ │ ├── 2_Metrics_image.png │ │ │ │ │ │ ├── Advanced Showcases.html │ │ │ │ │ │ ├── Advanced Showcases │ │ │ │ │ │ │ ├── 1_Day Notes_image.png │ │ │ │ │ │ │ ├── Day Notes.html │ │ │ │ │ │ │ ├── Day Notes_image.png │ │ │ │ │ │ │ ├── Task Manager.html │ │ │ │ │ │ │ ├── Task Manager_task-manager.png │ │ │ │ │ │ │ ├── Weight Tracker.html │ │ │ │ │ │ │ └── Weight Tracker_image.png │ │ │ │ │ │ ├── Attributes.html │ │ │ │ │ │ ├── Attributes │ │ │ │ │ │ │ ├── Attribute Inheritance.html │ │ │ │ │ │ │ ├── Labels.html │ │ │ │ │ │ │ ├── Promoted Attributes.html │ │ │ │ │ │ │ ├── Promoted Attributes_image.png │ │ │ │ │ │ │ ├── Promoted Attributes_promot.png │ │ │ │ │ │ │ └── Relations.html │ │ │ │ │ │ ├── Attributes_image.png │ │ │ │ │ │ ├── Bulk Actions.html │ │ │ │ │ │ ├── Bulk Actions_image.png │ │ │ │ │ │ ├── Configuration (config.ini or e.html │ │ │ │ │ │ ├── Configuration (config.ini or environment variables) │ │ │ │ │ │ │ ├── Cross-Origin Resource Sharing .html │ │ │ │ │ │ │ └── Trilium instance.html │ │ │ │ │ │ ├── Custom Request Handler.html │ │ │ │ │ │ ├── Custom Resource Providers.html │ │ │ │ │ │ ├── Database.html │ │ │ │ │ │ ├── Database │ │ │ │ │ │ │ ├── Demo Notes.html │ │ │ │ │ │ │ ├── Manually altering the data.png │ │ │ │ │ │ │ ├── Manually altering the database.html │ │ │ │ │ │ │ └── Manually altering the database │ │ │ │ │ │ │ │ ├── 1_SQL Console_image.png │ │ │ │ │ │ │ │ ├── 2_SQL Console_image.png │ │ │ │ │ │ │ │ ├── 3_SQL Console_image.png │ │ │ │ │ │ │ │ ├── SQL Console.html │ │ │ │ │ │ │ │ └── SQL Console_image.png │ │ │ │ │ │ ├── Default Note Title.html │ │ │ │ │ │ ├── ETAPI (REST API).html │ │ │ │ │ │ ├── ETAPI (REST API) │ │ │ │ │ │ │ └── API Reference.dat │ │ │ │ │ │ ├── Hidden Notes.html │ │ │ │ │ │ ├── Hidden Notes_image.png │ │ │ │ │ │ ├── Internal API │ │ │ │ │ │ │ └── API Reference.dat │ │ │ │ │ │ ├── Metrics.html │ │ │ │ │ │ ├── Metrics │ │ │ │ │ │ │ └── grafana-dashboard.json │ │ │ │ │ │ ├── Metrics_image.png │ │ │ │ │ │ ├── Note ID.html │ │ │ │ │ │ ├── Note Map (Link map, Tree m.png │ │ │ │ │ │ ├── Note Map (Link map, Tree map).html │ │ │ │ │ │ ├── Note source.html │ │ │ │ │ │ ├── Note source_image.png │ │ │ │ │ │ ├── Sharing.html │ │ │ │ │ │ ├── Sharing │ │ │ │ │ │ │ ├── 1_Serving directly the conte.png │ │ │ │ │ │ │ ├── Serving directly the conte.png │ │ │ │ │ │ │ └── Serving directly the content o.html │ │ │ │ │ │ ├── Sharing_image.png │ │ │ │ │ │ ├── Sharing_share-single-note.png │ │ │ │ │ │ ├── Sharing_shared-list.png │ │ │ │ │ │ ├── Technologies used.html │ │ │ │ │ │ ├── Technologies used │ │ │ │ │ │ │ ├── CKEditor.html │ │ │ │ │ │ │ ├── Excalidraw.html │ │ │ │ │ │ │ ├── Leaflet.html │ │ │ │ │ │ │ └── MindElixir.html │ │ │ │ │ │ ├── Templates.html │ │ │ │ │ │ ├── Templates_template-create-.png │ │ │ │ │ │ └── Templates_template.png │ │ │ │ │ │ ├── Basic Concepts and Features │ │ │ │ │ │ ├── 1_Zen mode_image.png │ │ │ │ │ │ ├── 2_Zen mode_image.png │ │ │ │ │ │ ├── 3_Zen mode_image.png │ │ │ │ │ │ ├── Import & Export │ │ │ │ │ │ │ ├── Evernote.html │ │ │ │ │ │ │ ├── Markdown.html │ │ │ │ │ │ │ ├── Markdown │ │ │ │ │ │ │ │ └── Supported syntax.html │ │ │ │ │ │ │ ├── Markdown_markdown-export-n.gif │ │ │ │ │ │ │ ├── Markdown_markdown-export-s.gif │ │ │ │ │ │ │ ├── Markdown_markdown-file-imp.gif │ │ │ │ │ │ │ ├── Markdown_markdown-inline-i.gif │ │ │ │ │ │ │ └── OneNote.html │ │ │ │ │ │ ├── Keyboard Shortcuts.html │ │ │ │ │ │ ├── Navigation │ │ │ │ │ │ │ ├── 1_Jump to_image.png │ │ │ │ │ │ │ ├── 1_Workspaces_image.png │ │ │ │ │ │ │ ├── 2_Jump to_image.png │ │ │ │ │ │ │ ├── Bookmarks.html │ │ │ │ │ │ │ ├── Bookmarks_bookmark-folder.png │ │ │ │ │ │ │ ├── Bookmarks_bookmarks.gif │ │ │ │ │ │ │ ├── Jump to.html │ │ │ │ │ │ │ ├── Jump to_image.png │ │ │ │ │ │ │ ├── Note Hoisting.html │ │ │ │ │ │ │ ├── Note Hoisting_note-hoistin.gif │ │ │ │ │ │ │ ├── Note Navigation.html │ │ │ │ │ │ │ ├── Note Navigation_image.png │ │ │ │ │ │ │ ├── Quick edit.clone.html │ │ │ │ │ │ │ ├── Quick search.html │ │ │ │ │ │ │ ├── Quick search_image.png │ │ │ │ │ │ │ ├── Search in note.html │ │ │ │ │ │ │ ├── Search in note_image.png │ │ │ │ │ │ │ ├── Search.html │ │ │ │ │ │ │ ├── Search_image.png │ │ │ │ │ │ │ ├── Similar Notes.html │ │ │ │ │ │ │ ├── Similar Notes_image.png │ │ │ │ │ │ │ ├── Tree Concepts.html │ │ │ │ │ │ │ ├── Workspaces.html │ │ │ │ │ │ │ └── Workspaces_image.png │ │ │ │ │ │ ├── Notes.html │ │ │ │ │ │ ├── Notes │ │ │ │ │ │ │ ├── 1_Export as PDF_image.png │ │ │ │ │ │ │ ├── Archived Notes.html │ │ │ │ │ │ │ ├── Archived Notes_hide-archiv.png │ │ │ │ │ │ │ ├── Attachments.html │ │ │ │ │ │ │ ├── Cloning Notes.html │ │ │ │ │ │ │ ├── Cloning Notes │ │ │ │ │ │ │ │ └── Branch prefix.html │ │ │ │ │ │ │ ├── Cloning Notes_create-clone.gif │ │ │ │ │ │ │ ├── Export as PDF.html │ │ │ │ │ │ │ ├── Export as PDF_image.png │ │ │ │ │ │ │ ├── Note Icons.html │ │ │ │ │ │ │ ├── Note Icons_note-icon-chang.png │ │ │ │ │ │ │ ├── Note Icons_note-icon-galle.png │ │ │ │ │ │ │ ├── Note List.html │ │ │ │ │ │ │ ├── Note List_image.png │ │ │ │ │ │ │ ├── Note Revisions.html │ │ │ │ │ │ │ ├── Note Revisions_note-revisi.png │ │ │ │ │ │ │ ├── Protected Notes.html │ │ │ │ │ │ │ ├── Protected Notes_protecting.gif │ │ │ │ │ │ │ ├── Read-Only Notes.html │ │ │ │ │ │ │ ├── Read-Only Notes_image.png │ │ │ │ │ │ │ └── Sorting Notes.html │ │ │ │ │ │ ├── Themes.html │ │ │ │ │ │ ├── Themes │ │ │ │ │ │ │ └── Theme Gallery.html │ │ │ │ │ │ ├── Themes_dark-theme.png │ │ │ │ │ │ ├── Themes_image.png │ │ │ │ │ │ ├── Themes_steel-blue.png │ │ │ │ │ │ ├── UI Elements │ │ │ │ │ │ │ ├── 1_Options_image.png │ │ │ │ │ │ │ ├── 1_Recent Changes_image.png │ │ │ │ │ │ │ ├── 1_Tabs_image.png │ │ │ │ │ │ │ ├── 1_Vertical and horizontal la.png │ │ │ │ │ │ │ ├── 2_Tabs_image.png │ │ │ │ │ │ │ ├── 2_Vertical and horizontal la.png │ │ │ │ │ │ │ ├── 3_Vertical and horizontal la.png │ │ │ │ │ │ │ ├── 4_Vertical and horizontal la.png │ │ │ │ │ │ │ ├── 5_Vertical and horizontal la.png │ │ │ │ │ │ │ ├── Floating buttons.html │ │ │ │ │ │ │ ├── Floating buttons_image.png │ │ │ │ │ │ │ ├── Global menu.html │ │ │ │ │ │ │ ├── Global menu_image.png │ │ │ │ │ │ │ ├── Launch Bar.html │ │ │ │ │ │ │ ├── Launch Bar_image.png │ │ │ │ │ │ │ ├── Note Tooltip.html │ │ │ │ │ │ │ ├── Note Tooltip_image.png │ │ │ │ │ │ │ ├── Note Tree.html │ │ │ │ │ │ │ ├── Note Tree │ │ │ │ │ │ │ │ ├── 1_Note tree contextual menu_.png │ │ │ │ │ │ │ │ ├── Keyboard shortcuts.html │ │ │ │ │ │ │ │ ├── Multiple selection.html │ │ │ │ │ │ │ │ ├── Multiple selection_image.png │ │ │ │ │ │ │ │ ├── Note tree contextual menu.html │ │ │ │ │ │ │ │ └── Note tree contextual menu_.png │ │ │ │ │ │ │ ├── Note Tree_drag-and-drop.gif │ │ │ │ │ │ │ ├── Note Tree_image.png │ │ │ │ │ │ │ ├── Note Tree_move-note-with-k.gif │ │ │ │ │ │ │ ├── Note buttons.html │ │ │ │ │ │ │ ├── Note buttons_image.png │ │ │ │ │ │ │ ├── Options.html │ │ │ │ │ │ │ ├── Options_image.png │ │ │ │ │ │ │ ├── Quick edit.html │ │ │ │ │ │ │ ├── Quick edit_image.png │ │ │ │ │ │ │ ├── Recent Changes.html │ │ │ │ │ │ │ ├── Recent Changes_image.png │ │ │ │ │ │ │ ├── Ribbon.html │ │ │ │ │ │ │ ├── Ribbon_image.png │ │ │ │ │ │ │ ├── Right Sidebar.html │ │ │ │ │ │ │ ├── Right Sidebar_image.png │ │ │ │ │ │ │ ├── Split View.html │ │ │ │ │ │ │ ├── Split View_1_Split View_im.png │ │ │ │ │ │ │ ├── Split View_2_Split View_im.png │ │ │ │ │ │ │ ├── Split View_3_Split View_im.png │ │ │ │ │ │ │ ├── Split View_4_Split View_im.png │ │ │ │ │ │ │ ├── Split View_Split View_imag.png │ │ │ │ │ │ │ ├── Tabs.html │ │ │ │ │ │ │ ├── Tabs_image.png │ │ │ │ │ │ │ ├── Vertical and horizontal la.png │ │ │ │ │ │ │ ├── Vertical and horizontal layout.html │ │ │ │ │ │ │ └── Zoom.html │ │ │ │ │ │ ├── Zen mode.html │ │ │ │ │ │ └── Zen mode_image.png │ │ │ │ │ │ ├── FAQ.html │ │ │ │ │ │ ├── Feature Highlights.html │ │ │ │ │ │ ├── Installation & Setup │ │ │ │ │ │ ├── Backup.html │ │ │ │ │ │ ├── Data directory.html │ │ │ │ │ │ ├── Data directory_image.png │ │ │ │ │ │ ├── Desktop Installation.html │ │ │ │ │ │ ├── Mobile Frontend.html │ │ │ │ │ │ ├── Mobile Frontend_mobile-sma.png │ │ │ │ │ │ ├── Mobile Frontend_mobile-tab.png │ │ │ │ │ │ ├── Server Installation.html │ │ │ │ │ │ ├── Server Installation │ │ │ │ │ │ │ ├── 1. Installing the server │ │ │ │ │ │ │ │ ├── Manually.html │ │ │ │ │ │ │ │ ├── Multiple server instances.html │ │ │ │ │ │ │ │ ├── On NixOS.html │ │ │ │ │ │ │ │ ├── Packaged version for Linux.html │ │ │ │ │ │ │ │ ├── Using Docker.html │ │ │ │ │ │ │ │ └── Using Kubernetes.html │ │ │ │ │ │ │ ├── 2. Reverse proxy │ │ │ │ │ │ │ │ ├── Apache.html │ │ │ │ │ │ │ │ └── Nginx.html │ │ │ │ │ │ │ ├── Authentication.html │ │ │ │ │ │ │ ├── Multi-Factor Authentication.html │ │ │ │ │ │ │ └── TLS Configuration.html │ │ │ │ │ │ ├── Synchronization.html │ │ │ │ │ │ ├── Synchronization_image.png │ │ │ │ │ │ ├── Synchronization_sync-confi.png │ │ │ │ │ │ ├── Synchronization_sync-in-pr.png │ │ │ │ │ │ ├── Synchronization_sync-init.png │ │ │ │ │ │ ├── Upgrading TriliumNext.html │ │ │ │ │ │ ├── Web Clipper.html │ │ │ │ │ │ └── Web Clipper_image.png │ │ │ │ │ │ ├── Note Types.html │ │ │ │ │ │ ├── Note Types │ │ │ │ │ │ ├── 1_Code_image.png │ │ │ │ │ │ ├── 1_File_image.png │ │ │ │ │ │ ├── 1_Mermaid Diagrams_image.png │ │ │ │ │ │ ├── 1_Relation Map_relation-map-.gif │ │ │ │ │ │ ├── 1_Relation Map_relation-map-.png │ │ │ │ │ │ ├── 1_Text_image.png │ │ │ │ │ │ ├── 2_File_image.png │ │ │ │ │ │ ├── 2_Mermaid Diagrams_image.png │ │ │ │ │ │ ├── 2_Text_image.png │ │ │ │ │ │ ├── 3_File_image.png │ │ │ │ │ │ ├── 4_File_image.png │ │ │ │ │ │ ├── 5_File_image.png │ │ │ │ │ │ ├── 6_File_image.png │ │ │ │ │ │ ├── Canvas.html │ │ │ │ │ │ ├── Canvas_image.png │ │ │ │ │ │ ├── Code.html │ │ │ │ │ │ ├── Code_image.png │ │ │ │ │ │ ├── Collections.html │ │ │ │ │ │ ├── Collections │ │ │ │ │ │ │ ├── 10_Calendar View_image.png │ │ │ │ │ │ │ ├── 10_Geo Map View_image.png │ │ │ │ │ │ │ ├── 11_Calendar View_image.png │ │ │ │ │ │ │ ├── 11_Geo Map View_image.png │ │ │ │ │ │ │ ├── 12_Geo Map View_image.png │ │ │ │ │ │ │ ├── 13_Geo Map View_image.png │ │ │ │ │ │ │ ├── 14_Geo Map View_image.png │ │ │ │ │ │ │ ├── 15_Geo Map View_image.png │ │ │ │ │ │ │ ├── 16_Geo Map View_image.png │ │ │ │ │ │ │ ├── 17_Geo Map View_image.png │ │ │ │ │ │ │ ├── 18_Geo Map View_image.png │ │ │ │ │ │ │ ├── 1_Calendar View_image.png │ │ │ │ │ │ │ ├── 1_Geo Map View_image.png │ │ │ │ │ │ │ ├── 2_Calendar View_image.png │ │ │ │ │ │ │ ├── 2_Geo Map View_image.png │ │ │ │ │ │ │ ├── 3_Calendar View_image.png │ │ │ │ │ │ │ ├── 3_Geo Map View_image.png │ │ │ │ │ │ │ ├── 4_Calendar View_image.png │ │ │ │ │ │ │ ├── 4_Geo Map View_image.png │ │ │ │ │ │ │ ├── 5_Calendar View_image.png │ │ │ │ │ │ │ ├── 5_Geo Map View_image.png │ │ │ │ │ │ │ ├── 6_Calendar View_image.png │ │ │ │ │ │ │ ├── 6_Geo Map View_image.png │ │ │ │ │ │ │ ├── 7_Calendar View_image.png │ │ │ │ │ │ │ ├── 7_Geo Map View_image.png │ │ │ │ │ │ │ ├── 8_Calendar View_image.png │ │ │ │ │ │ │ ├── 8_Geo Map View_image.png │ │ │ │ │ │ │ ├── 9_Calendar View_image.png │ │ │ │ │ │ │ ├── 9_Geo Map View_image.png │ │ │ │ │ │ │ ├── Board View.html │ │ │ │ │ │ │ ├── Board View_image.png │ │ │ │ │ │ │ ├── Calendar View.html │ │ │ │ │ │ │ ├── Calendar View_image.png │ │ │ │ │ │ │ ├── Geo Map View.html │ │ │ │ │ │ │ ├── Geo Map View_image.jpg │ │ │ │ │ │ │ ├── Geo Map View_image.png │ │ │ │ │ │ │ ├── Grid View.html │ │ │ │ │ │ │ ├── Grid View_image.png │ │ │ │ │ │ │ ├── List View.html │ │ │ │ │ │ │ ├── List View_image.png │ │ │ │ │ │ │ ├── Table View.html │ │ │ │ │ │ │ └── Table View_image.png │ │ │ │ │ │ ├── File.html │ │ │ │ │ │ ├── File_image.png │ │ │ │ │ │ ├── Mermaid Diagrams.html │ │ │ │ │ │ ├── Mermaid Diagrams │ │ │ │ │ │ │ ├── ELK layout.html │ │ │ │ │ │ │ ├── ELK layout_ELK off.svg │ │ │ │ │ │ │ └── ELK layout_ELK on.svg │ │ │ │ │ │ ├── Mermaid Diagrams_image.png │ │ │ │ │ │ ├── Mind Map.html │ │ │ │ │ │ ├── Mind Map_image.png │ │ │ │ │ │ ├── Note Map.html │ │ │ │ │ │ ├── Note Map_image.png │ │ │ │ │ │ ├── Relation Map.html │ │ │ │ │ │ ├── Relation Map_relation-map-.gif │ │ │ │ │ │ ├── Relation Map_relation-map-.png │ │ │ │ │ │ ├── Render Note.html │ │ │ │ │ │ ├── Render Note_image.png │ │ │ │ │ │ ├── Saved Search.html │ │ │ │ │ │ ├── Saved Search_saved-search.gif │ │ │ │ │ │ ├── Text.html │ │ │ │ │ │ ├── Text │ │ │ │ │ │ │ ├── 10_Images_image.png │ │ │ │ │ │ │ ├── 10_Lists_image.png │ │ │ │ │ │ │ ├── 10_Tables_image.png │ │ │ │ │ │ │ ├── 11_Tables_image.png │ │ │ │ │ │ │ ├── 12_Tables_image.png │ │ │ │ │ │ │ ├── 1_Block quotes & admonitions.png │ │ │ │ │ │ │ ├── 1_Bookmarks_plus.png │ │ │ │ │ │ │ ├── 1_Developer-specific formatt.png │ │ │ │ │ │ │ ├── 1_Footnotes_image.png │ │ │ │ │ │ │ ├── 1_Formatting toolbar_image.png │ │ │ │ │ │ │ ├── 1_General formatting_image.png │ │ │ │ │ │ │ ├── 1_Images_image.png │ │ │ │ │ │ │ ├── 1_Insert buttons_image.png │ │ │ │ │ │ │ ├── 1_Insert buttons_plus.png │ │ │ │ │ │ │ ├── 1_Lists_image.png │ │ │ │ │ │ │ ├── 1_Math Equations_image.png │ │ │ │ │ │ │ ├── 1_Other features_image.png │ │ │ │ │ │ │ ├── 1_Tables_image.png │ │ │ │ │ │ │ ├── 2_Block quotes & admonitions.png │ │ │ │ │ │ │ ├── 2_Developer-specific formatt.png │ │ │ │ │ │ │ ├── 2_Formatting toolbar_image.png │ │ │ │ │ │ │ ├── 2_General formatting_image.png │ │ │ │ │ │ │ ├── 2_Images_image.png │ │ │ │ │ │ │ ├── 2_Insert buttons_image.png │ │ │ │ │ │ │ ├── 2_Lists_image.png │ │ │ │ │ │ │ ├── 2_Other features_image.png │ │ │ │ │ │ │ ├── 2_Tables_image.png │ │ │ │ │ │ │ ├── 3_Developer-specific formatt.png │ │ │ │ │ │ │ ├── 3_Formatting toolbar_image.png │ │ │ │ │ │ │ ├── 3_General formatting_image.png │ │ │ │ │ │ │ ├── 3_Images_image.png │ │ │ │ │ │ │ ├── 3_Insert buttons_image.png │ │ │ │ │ │ │ ├── 3_Lists_image.png │ │ │ │ │ │ │ ├── 3_Other features_image.png │ │ │ │ │ │ │ ├── 3_Tables_image.png │ │ │ │ │ │ │ ├── 4_Developer-specific formatt.png │ │ │ │ │ │ │ ├── 4_General formatting_image.png │ │ │ │ │ │ │ ├── 4_Images_image.png │ │ │ │ │ │ │ ├── 4_Insert buttons_image.png │ │ │ │ │ │ │ ├── 4_Lists_image.png │ │ │ │ │ │ │ ├── 4_Other features_image.png │ │ │ │ │ │ │ ├── 4_Tables_image.png │ │ │ │ │ │ │ ├── 5_Developer-specific formatt.png │ │ │ │ │ │ │ ├── 5_Images_image.png │ │ │ │ │ │ │ ├── 5_Insert buttons_image.png │ │ │ │ │ │ │ ├── 5_Lists_image.png │ │ │ │ │ │ │ ├── 5_Other features_image.png │ │ │ │ │ │ │ ├── 5_Tables_image.png │ │ │ │ │ │ │ ├── 6_Developer-specific formatt.png │ │ │ │ │ │ │ ├── 6_Images_image.png │ │ │ │ │ │ │ ├── 6_Insert buttons_image.png │ │ │ │ │ │ │ ├── 6_Lists_image.png │ │ │ │ │ │ │ ├── 6_Other features_image.png │ │ │ │ │ │ │ ├── 6_Tables_image.png │ │ │ │ │ │ │ ├── 7_Images_image.png │ │ │ │ │ │ │ ├── 7_Insert buttons_image.png │ │ │ │ │ │ │ ├── 7_Lists_image.png │ │ │ │ │ │ │ ├── 7_Tables_image.png │ │ │ │ │ │ │ ├── 8_Images_image.png │ │ │ │ │ │ │ ├── 8_Insert buttons_image.png │ │ │ │ │ │ │ ├── 8_Lists_image.png │ │ │ │ │ │ │ ├── 8_Tables_image.png │ │ │ │ │ │ │ ├── 9_Images_image.png │ │ │ │ │ │ │ ├── 9_Lists_image.png │ │ │ │ │ │ │ ├── 9_Tables_image.png │ │ │ │ │ │ │ ├── Block quotes & admonitions.html │ │ │ │ │ │ │ ├── Block quotes & admonitions.png │ │ │ │ │ │ │ ├── Bookmarks.html │ │ │ │ │ │ │ ├── Bookmarks_plus.png │ │ │ │ │ │ │ ├── Content language & Right-t.png │ │ │ │ │ │ │ ├── Content language & Right-to-le.html │ │ │ │ │ │ │ ├── Cut to subnote.html │ │ │ │ │ │ │ ├── Cut to subnote_cut-to-subn.gif │ │ │ │ │ │ │ ├── Developer-specific formatt.png │ │ │ │ │ │ │ ├── Developer-specific formatting.html │ │ │ │ │ │ │ ├── Developer-specific formatting │ │ │ │ │ │ │ │ ├── 1_Code blocks_image.png │ │ │ │ │ │ │ │ ├── 2_Code blocks_image.png │ │ │ │ │ │ │ │ ├── Code blocks.html │ │ │ │ │ │ │ │ └── Code blocks_image.png │ │ │ │ │ │ │ ├── Footnotes.html │ │ │ │ │ │ │ ├── Footnotes_image.png │ │ │ │ │ │ │ ├── Formatting toolbar.html │ │ │ │ │ │ │ ├── Formatting toolbar_image.png │ │ │ │ │ │ │ ├── General formatting.html │ │ │ │ │ │ │ ├── General formatting_image.png │ │ │ │ │ │ │ ├── Highlights list.html │ │ │ │ │ │ │ ├── Highlights list_image.png │ │ │ │ │ │ │ ├── Images.html │ │ │ │ │ │ │ ├── Images │ │ │ │ │ │ │ │ ├── 1_Image references_image.png │ │ │ │ │ │ │ │ ├── Image references.html │ │ │ │ │ │ │ │ └── Image references_image.png │ │ │ │ │ │ │ ├── Images_image.png │ │ │ │ │ │ │ ├── Include Note.html │ │ │ │ │ │ │ ├── Include Note_image.png │ │ │ │ │ │ │ ├── Insert buttons.html │ │ │ │ │ │ │ ├── Insert buttons_image.png │ │ │ │ │ │ │ ├── Insert buttons_plus.png │ │ │ │ │ │ │ ├── Keyboard shortcuts.html │ │ │ │ │ │ │ ├── Links.html │ │ │ │ │ │ │ ├── Links │ │ │ │ │ │ │ │ ├── 1_External links_image.png │ │ │ │ │ │ │ │ ├── 2_External links_image.png │ │ │ │ │ │ │ │ ├── External links.html │ │ │ │ │ │ │ │ ├── External links_image.png │ │ │ │ │ │ │ │ ├── Internal (reference) links.html │ │ │ │ │ │ │ │ └── Internal (reference) links.png │ │ │ │ │ │ │ ├── Lists.html │ │ │ │ │ │ │ ├── Lists_image.png │ │ │ │ │ │ │ ├── Markdown-like formatting.html │ │ │ │ │ │ │ ├── Math Equations.html │ │ │ │ │ │ │ ├── Math Equations_image.png │ │ │ │ │ │ │ ├── Other features.html │ │ │ │ │ │ │ ├── Other features_image.png │ │ │ │ │ │ │ ├── Premium features.html │ │ │ │ │ │ │ ├── Premium features │ │ │ │ │ │ │ │ ├── 1_Text Snippets_image.png │ │ │ │ │ │ │ │ ├── Slash Commands.html │ │ │ │ │ │ │ │ ├── Slash Commands_image.png │ │ │ │ │ │ │ │ ├── Text Snippets.html │ │ │ │ │ │ │ │ └── Text Snippets_image.png │ │ │ │ │ │ │ ├── Table of contents.html │ │ │ │ │ │ │ ├── Table of contents_image.png │ │ │ │ │ │ │ ├── Tables.html │ │ │ │ │ │ │ └── Tables_image.png │ │ │ │ │ │ ├── Text_image.png │ │ │ │ │ │ └── Web View.html │ │ │ │ │ │ ├── Note Types_image.png │ │ │ │ │ │ ├── Quick Start.html │ │ │ │ │ │ ├── Scripting.html │ │ │ │ │ │ ├── Scripting │ │ │ │ │ │ ├── Custom Widgets.html │ │ │ │ │ │ ├── Custom Widgets │ │ │ │ │ │ │ ├── Widget Basics.html │ │ │ │ │ │ │ ├── Word count widget.html │ │ │ │ │ │ │ └── Word count widget_image.png │ │ │ │ │ │ ├── Events.html │ │ │ │ │ │ ├── Examples │ │ │ │ │ │ │ ├── Downloading responses from Goo.html │ │ │ │ │ │ │ ├── New Task launcher button.html │ │ │ │ │ │ │ ├── New Task launcher button_i.png │ │ │ │ │ │ │ ├── Using promoted attributes .png │ │ │ │ │ │ │ └── Using promoted attributes to c.html │ │ │ │ │ │ ├── Frontend Basics.html │ │ │ │ │ │ ├── Script API.html │ │ │ │ │ │ └── Script API │ │ │ │ │ │ │ ├── Backend API.dat │ │ │ │ │ │ │ └── Frontend API │ │ │ │ │ │ │ └── FNote.dat │ │ │ │ │ │ ├── Theme development │ │ │ │ │ │ ├── 1_Custom app-wide CSS_image.png │ │ │ │ │ │ ├── 2_Custom app-wide CSS_image.png │ │ │ │ │ │ ├── Creating a custom theme.html │ │ │ │ │ │ ├── Creating a custom theme_1_.png │ │ │ │ │ │ ├── Creating a custom theme_2_.png │ │ │ │ │ │ ├── Creating a custom theme_3_.png │ │ │ │ │ │ ├── Creating a custom theme_4_.png │ │ │ │ │ │ ├── Creating a custom theme_5_.png │ │ │ │ │ │ ├── Creating a custom theme_Cr.png │ │ │ │ │ │ ├── Custom app-wide CSS.html │ │ │ │ │ │ ├── Custom app-wide CSS_image.png │ │ │ │ │ │ ├── Customize the Next theme.html │ │ │ │ │ │ ├── Customize the Next theme_i.png │ │ │ │ │ │ └── Reference.html │ │ │ │ │ │ ├── Troubleshooting.html │ │ │ │ │ │ └── Troubleshooting │ │ │ │ │ │ ├── Anonymized Database.html │ │ │ │ │ │ ├── Anonymized Database_image.png │ │ │ │ │ │ ├── Error logs.html │ │ │ │ │ │ ├── Error logs │ │ │ │ │ │ ├── Backend (server) logs.html │ │ │ │ │ │ ├── Frontend logs.html │ │ │ │ │ │ ├── Frontend logs_error-logs-f.png │ │ │ │ │ │ └── Frontend logs_image.png │ │ │ │ │ │ ├── Error logs_error-logs-expo.png │ │ │ │ │ │ ├── Refreshing the application.html │ │ │ │ │ │ ├── Reporting issues.html │ │ │ │ │ │ └── Synchronization fails with 504.html │ │ │ │ │ ├── hidden.html │ │ │ │ │ ├── launchbar_command_launcher.html │ │ │ │ │ ├── launchbar_history_navigation.html │ │ │ │ │ ├── launchbar_intro.html │ │ │ │ │ ├── launchbar_note_launcher.html │ │ │ │ │ ├── launchbar_quick_search.html │ │ │ │ │ ├── launchbar_script_launcher.html │ │ │ │ │ ├── launchbar_spacer.html │ │ │ │ │ ├── launchbar_widget_launcher.html │ │ │ │ │ ├── share.html │ │ │ │ │ └── user_hidden.html │ │ │ ├── etapi.openapi.yaml │ │ │ ├── icon.ico │ │ │ ├── images │ │ │ │ ├── google-logo.svg │ │ │ │ ├── icon-black.svg │ │ │ │ ├── icon-color.svg │ │ │ │ ├── icon-installer.svg │ │ │ │ ├── icon-purple.svg │ │ │ │ └── icon-white.svg │ │ │ ├── llm │ │ │ │ └── prompts │ │ │ │ │ ├── base_system_prompt.md │ │ │ │ │ └── providers │ │ │ │ │ ├── anthropic_tool_prompt.md │ │ │ │ │ ├── ollama_tool_prompt.md │ │ │ │ │ └── openai_tool_prompt.md │ │ │ ├── translations │ │ │ │ ├── ar │ │ │ │ │ └── server.json │ │ │ │ ├── ca │ │ │ │ │ └── server.json │ │ │ │ ├── cn │ │ │ │ │ └── server.json │ │ │ │ ├── cs │ │ │ │ │ └── server.json │ │ │ │ ├── de │ │ │ │ │ └── server.json │ │ │ │ ├── el │ │ │ │ │ └── server.json │ │ │ │ ├── en │ │ │ │ │ └── server.json │ │ │ │ ├── es │ │ │ │ │ └── server.json │ │ │ │ ├── fa │ │ │ │ │ └── server.json │ │ │ │ ├── fi │ │ │ │ │ └── server.json │ │ │ │ ├── fr │ │ │ │ │ └── server.json │ │ │ │ ├── hr │ │ │ │ │ └── server.json │ │ │ │ ├── hu │ │ │ │ │ └── server.json │ │ │ │ ├── it │ │ │ │ │ └── server.json │ │ │ │ ├── ja │ │ │ │ │ └── server.json │ │ │ │ ├── ko │ │ │ │ │ └── server.json │ │ │ │ ├── nl │ │ │ │ │ └── server.json │ │ │ │ ├── pl │ │ │ │ │ └── server.json │ │ │ │ ├── pt │ │ │ │ │ └── server.json │ │ │ │ ├── pt_br │ │ │ │ │ └── server.json │ │ │ │ ├── ro │ │ │ │ │ └── server.json │ │ │ │ ├── ru │ │ │ │ │ └── server.json │ │ │ │ ├── sl │ │ │ │ │ └── server.json │ │ │ │ ├── sr │ │ │ │ │ └── server.json │ │ │ │ ├── tr │ │ │ │ │ └── server.json │ │ │ │ ├── tw │ │ │ │ │ └── server.json │ │ │ │ ├── uk │ │ │ │ │ └── server.json │ │ │ │ └── vi │ │ │ │ │ └── server.json │ │ │ └── views │ │ │ │ ├── desktop.ejs │ │ │ │ ├── login.ejs │ │ │ │ ├── mobile.ejs │ │ │ │ ├── partials │ │ │ │ └── windowGlobal.ejs │ │ │ │ ├── set_password.ejs │ │ │ │ └── setup.ejs │ │ ├── becca │ │ │ ├── becca-interface.ts │ │ │ ├── becca.ts │ │ │ ├── becca_loader.ts │ │ │ ├── becca_service.ts │ │ │ ├── entities │ │ │ │ ├── abstract_becca_entity.ts │ │ │ │ ├── battachment.ts │ │ │ │ ├── battribute.ts │ │ │ │ ├── bblob.ts │ │ │ │ ├── bbranch.ts │ │ │ │ ├── betapi_token.ts │ │ │ │ ├── bnote.ts │ │ │ │ ├── boption.ts │ │ │ │ ├── brecent_note.ts │ │ │ │ ├── brevision.spec.ts │ │ │ │ └── brevision.ts │ │ │ ├── entity_constructor.ts │ │ │ └── similarity.ts │ │ ├── docker_healthcheck.ts │ │ ├── errors │ │ │ ├── forbidden_error.ts │ │ │ ├── http_error.ts │ │ │ ├── not_found_error.ts │ │ │ ├── open_id_error.ts │ │ │ └── validation_error.ts │ │ ├── etapi │ │ │ ├── app_info.ts │ │ │ ├── attachments.ts │ │ │ ├── attributes.ts │ │ │ ├── auth.ts │ │ │ ├── backup.ts │ │ │ ├── branches.ts │ │ │ ├── etapi-interface.ts │ │ │ ├── etapi_utils.ts │ │ │ ├── mappers.ts │ │ │ ├── metrics.ts │ │ │ ├── notes.ts │ │ │ ├── spec.ts │ │ │ ├── special_notes.ts │ │ │ └── validators.ts │ │ ├── express.d.ts │ │ ├── main.ts │ │ ├── migrations │ │ │ ├── 0216__move_content_into_blobs.ts │ │ │ ├── 0220__migrate_images_to_attachments.ts │ │ │ ├── 0233__migrate_geo_map_to_collection.spec.ts │ │ │ ├── 0233__migrate_geo_map_to_collection.ts │ │ │ └── migrations.ts │ │ ├── routes │ │ │ ├── api │ │ │ │ ├── anthropic.ts │ │ │ │ ├── app_info.ts │ │ │ │ ├── attachments.ts │ │ │ │ ├── attributes.ts │ │ │ │ ├── autocomplete.ts │ │ │ │ ├── backend_log.ts │ │ │ │ ├── branches.ts │ │ │ │ ├── bulk_action.ts │ │ │ │ ├── clipper.ts │ │ │ │ ├── cloning.ts │ │ │ │ ├── database.ts │ │ │ │ ├── etapi_tokens.ts │ │ │ │ ├── export.ts │ │ │ │ ├── files.ts │ │ │ │ ├── fonts.ts │ │ │ │ ├── image.spec.ts │ │ │ │ ├── image.ts │ │ │ │ ├── import.ts │ │ │ │ ├── keys.ts │ │ │ │ ├── llm.spec.ts │ │ │ │ ├── llm.ts │ │ │ │ ├── login.ts │ │ │ │ ├── metrics.ts │ │ │ │ ├── note_map.ts │ │ │ │ ├── notes.ts │ │ │ │ ├── ollama.ts │ │ │ │ ├── openai.ts │ │ │ │ ├── options.ts │ │ │ │ ├── other.ts │ │ │ │ ├── password.ts │ │ │ │ ├── recent_changes.ts │ │ │ │ ├── recent_notes.ts │ │ │ │ ├── recovery_codes.ts │ │ │ │ ├── relation-map.ts │ │ │ │ ├── revisions.ts │ │ │ │ ├── script.ts │ │ │ │ ├── search.ts │ │ │ │ ├── sender.ts │ │ │ │ ├── setup.ts │ │ │ │ ├── similar_notes.ts │ │ │ │ ├── special_notes.ts │ │ │ │ ├── sql.ts │ │ │ │ ├── stats.ts │ │ │ │ ├── sync.ts │ │ │ │ ├── system_info.ts │ │ │ │ ├── totp.ts │ │ │ │ └── tree.ts │ │ │ ├── api_docs.ts │ │ │ ├── assets.ts │ │ │ ├── csrf_protection.ts │ │ │ ├── custom.ts │ │ │ ├── electron.ts │ │ │ ├── error_handlers.ts │ │ │ ├── index.ts │ │ │ ├── login.spec.ts │ │ │ ├── login.ts │ │ │ ├── route_api.ts │ │ │ ├── routes.ts │ │ │ ├── session_parser.ts │ │ │ └── setup.ts │ │ ├── services │ │ │ ├── anonymization.ts │ │ │ ├── api-interface.ts │ │ │ ├── app_info.ts │ │ │ ├── app_path.ts │ │ │ ├── asset_path.ts │ │ │ ├── attribute_formatter.ts │ │ │ ├── attributes.ts │ │ │ ├── auth.spec.ts │ │ │ ├── auth.ts │ │ │ ├── backend_script_api.ts │ │ │ ├── backend_script_api_interface.ts │ │ │ ├── backend_script_entrypoint.ts │ │ │ ├── backup.ts │ │ │ ├── blob-interface.ts │ │ │ ├── blob.ts │ │ │ ├── branches.ts │ │ │ ├── build.ts │ │ │ ├── builtin_attributes.ts │ │ │ ├── bulk_actions.ts │ │ │ ├── cloning.ts │ │ │ ├── cls.ts │ │ │ ├── config.spec.ts │ │ │ ├── config.ts │ │ │ ├── consistency_checks.ts │ │ │ ├── content_hash.ts │ │ │ ├── data_dir.spec.ts │ │ │ ├── data_dir.ts │ │ │ ├── date_notes.spec.ts │ │ │ ├── date_notes.ts │ │ │ ├── date_utils.ts │ │ │ ├── encryption │ │ │ │ ├── data_encryption.ts │ │ │ │ ├── my_scrypt.ts │ │ │ │ ├── open_id_encryption.ts │ │ │ │ ├── password.ts │ │ │ │ ├── password_encryption.ts │ │ │ │ ├── recovery_codes.ts │ │ │ │ └── totp_encryption.ts │ │ │ ├── entity_changes.ts │ │ │ ├── erase.ts │ │ │ ├── etapi_tokens.ts │ │ │ ├── events.ts │ │ │ ├── export │ │ │ │ ├── markdown.spec.ts │ │ │ │ ├── markdown.ts │ │ │ │ ├── opml.ts │ │ │ │ ├── single.spec.ts │ │ │ │ ├── single.ts │ │ │ │ └── zip.ts │ │ │ ├── handlers.ts │ │ │ ├── hidden_subtree.spec.ts │ │ │ ├── hidden_subtree.ts │ │ │ ├── hidden_subtree_launcherbar.ts │ │ │ ├── hidden_subtree_templates.ts │ │ │ ├── hoisted_note.ts │ │ │ ├── host.ts │ │ │ ├── html_sanitizer.spec.ts │ │ │ ├── html_sanitizer.ts │ │ │ ├── i18n.spec.ts │ │ │ ├── i18n.ts │ │ │ ├── image.ts │ │ │ ├── import │ │ │ │ ├── common.ts │ │ │ │ ├── enex.ts │ │ │ │ ├── markdown.spec.ts │ │ │ │ ├── markdown.ts │ │ │ │ ├── markdown │ │ │ │ │ ├── wikilink_internal_link.ts │ │ │ │ │ └── wikilink_transclusion.ts │ │ │ │ ├── mime.spec.ts │ │ │ │ ├── mime.ts │ │ │ │ ├── opml.ts │ │ │ │ ├── samples │ │ │ │ │ ├── IREN Reports Q2 FY25 Results.htm │ │ │ │ │ ├── IREN.Reports.Q2.FY25.Results_files.zip │ │ │ │ │ ├── New note.excalidraw │ │ │ │ │ ├── New note.mermaid │ │ │ │ │ ├── New note.mmd │ │ │ │ │ ├── Text Note.mdx │ │ │ │ │ ├── UTF-16LE Code Note.json │ │ │ │ │ ├── UTF-16LE Text Note.md │ │ │ │ │ ├── UTF-16LE Text Note.txt │ │ │ │ │ ├── geomap.zip │ │ │ │ │ ├── mdx.zip │ │ │ │ │ └── silverbullet.zip │ │ │ │ ├── single.spec.ts │ │ │ │ ├── single.ts │ │ │ │ ├── utils.spec.ts │ │ │ │ ├── utils.ts │ │ │ │ ├── zip.spec.ts │ │ │ │ └── zip.ts │ │ │ ├── in_app_help.spec.ts │ │ │ ├── in_app_help.ts │ │ │ ├── instance_id.ts │ │ │ ├── keyboard_actions.ts │ │ │ ├── llm │ │ │ │ ├── README.md │ │ │ │ ├── ai_interface.ts │ │ │ │ ├── ai_service_manager.spec.ts │ │ │ │ ├── ai_service_manager.ts │ │ │ │ ├── base_ai_service.ts │ │ │ │ ├── chat │ │ │ │ │ ├── handlers │ │ │ │ │ │ ├── context_handler.ts │ │ │ │ │ │ ├── stream_handler.ts │ │ │ │ │ │ └── tool_handler.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── rest_chat_service.spec.ts │ │ │ │ │ ├── rest_chat_service.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── message_formatter.spec.ts │ │ │ │ │ │ └── message_formatter.ts │ │ │ │ ├── chat_service.spec.ts │ │ │ │ ├── chat_service.ts │ │ │ │ ├── chat_storage_service.spec.ts │ │ │ │ ├── chat_storage_service.ts │ │ │ │ ├── config │ │ │ │ │ ├── configuration_helpers.spec.ts │ │ │ │ │ ├── configuration_helpers.ts │ │ │ │ │ └── configuration_manager.ts │ │ │ │ ├── constants │ │ │ │ │ ├── formatter_constants.ts │ │ │ │ │ ├── hierarchy_constants.ts │ │ │ │ │ ├── llm_prompt_constants.ts │ │ │ │ │ ├── provider_constants.ts │ │ │ │ │ ├── query_decomposition_constants.ts │ │ │ │ │ └── search_constants.ts │ │ │ │ ├── context │ │ │ │ │ ├── code_handlers.ts │ │ │ │ │ ├── content_chunking.ts │ │ │ │ │ ├── hierarchy.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── cache_manager.ts │ │ │ │ │ │ └── context_formatter.ts │ │ │ │ │ ├── note_content.ts │ │ │ │ │ ├── services │ │ │ │ │ │ ├── context_service.spec.ts │ │ │ │ │ │ ├── context_service.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── query_processor.ts │ │ │ │ │ └── summarization.ts │ │ │ │ ├── context_extractors │ │ │ │ │ ├── contextual_thinking_tool.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── note_navigator_tool.ts │ │ │ │ │ └── query_decomposition_tool.ts │ │ │ │ ├── formatters │ │ │ │ │ ├── base_formatter.ts │ │ │ │ │ ├── ollama_formatter.ts │ │ │ │ │ └── openai_formatter.ts │ │ │ │ ├── interfaces │ │ │ │ │ ├── agent_tool_interfaces.ts │ │ │ │ │ ├── ai_service_interfaces.ts │ │ │ │ │ ├── chat_session.ts │ │ │ │ │ ├── configuration_interfaces.ts │ │ │ │ │ ├── context_interfaces.ts │ │ │ │ │ ├── error_interfaces.ts │ │ │ │ │ ├── message_formatter.ts │ │ │ │ │ └── model_capabilities.ts │ │ │ │ ├── model_capabilities_service.spec.ts │ │ │ │ ├── model_capabilities_service.ts │ │ │ │ ├── pipeline │ │ │ │ │ ├── chat_pipeline.spec.ts │ │ │ │ │ ├── chat_pipeline.ts │ │ │ │ │ ├── interfaces.ts │ │ │ │ │ ├── interfaces │ │ │ │ │ │ └── message_formatter.ts │ │ │ │ │ ├── pipeline_stage.ts │ │ │ │ │ └── stages │ │ │ │ │ │ ├── agent_tools_context_stage.ts │ │ │ │ │ │ ├── context_extraction_stage.ts │ │ │ │ │ │ ├── llm_completion_stage.ts │ │ │ │ │ │ ├── message_preparation_stage.ts │ │ │ │ │ │ ├── model_selection_stage.ts │ │ │ │ │ │ ├── response_processing_stage.ts │ │ │ │ │ │ ├── semantic_context_extraction_stage.ts │ │ │ │ │ │ └── tool_calling_stage.ts │ │ │ │ ├── provider_validation.ts │ │ │ │ ├── providers │ │ │ │ │ ├── anthropic_service.spec.ts │ │ │ │ │ ├── anthropic_service.ts │ │ │ │ │ ├── integration │ │ │ │ │ │ └── streaming.spec.ts │ │ │ │ │ ├── model_selection.spec.ts │ │ │ │ │ ├── ollama_service.spec.ts │ │ │ │ │ ├── ollama_service.ts │ │ │ │ │ ├── openai_service.spec.ts │ │ │ │ │ ├── openai_service.ts │ │ │ │ │ ├── provider_options.ts │ │ │ │ │ ├── providers.ts │ │ │ │ │ ├── stream_handler.spec.ts │ │ │ │ │ └── stream_handler.ts │ │ │ │ ├── rest_chat_service.ts │ │ │ │ ├── streaming │ │ │ │ │ ├── error_handling.spec.ts │ │ │ │ │ └── tool_execution.spec.ts │ │ │ │ ├── tools │ │ │ │ │ ├── attribute_manager_tool.ts │ │ │ │ │ ├── attribute_search_tool.ts │ │ │ │ │ ├── calendar_integration_tool.ts │ │ │ │ │ ├── content_extraction_tool.ts │ │ │ │ │ ├── keyword_search_tool.ts │ │ │ │ │ ├── note_creation_tool.ts │ │ │ │ │ ├── note_summarization_tool.ts │ │ │ │ │ ├── note_update_tool.ts │ │ │ │ │ ├── read_note_tool.ts │ │ │ │ │ ├── relationship_tool.ts │ │ │ │ │ ├── search_notes_tool.ts │ │ │ │ │ ├── search_suggestion_tool.ts │ │ │ │ │ ├── tool_initializer.ts │ │ │ │ │ ├── tool_interfaces.ts │ │ │ │ │ ├── tool_registry.spec.ts │ │ │ │ │ └── tool_registry.ts │ │ │ │ └── utils │ │ │ │ │ ├── ai_exclusion_utils.ts │ │ │ │ │ └── json_extractor.ts │ │ │ ├── log.ts │ │ │ ├── meta │ │ │ │ ├── attachment_meta.ts │ │ │ │ ├── attribute_meta.ts │ │ │ │ └── note_meta.ts │ │ │ ├── migration.spec.ts │ │ │ ├── migration.ts │ │ │ ├── note-interface.ts │ │ │ ├── note_types.ts │ │ │ ├── notes.ts │ │ │ ├── one_time_timer.ts │ │ │ ├── open_id.ts │ │ │ ├── options.ts │ │ │ ├── options_init.ts │ │ │ ├── port.ts │ │ │ ├── promoted_attribute_definition_interface.ts │ │ │ ├── promoted_attribute_definition_parser.ts │ │ │ ├── protected_session.ts │ │ │ ├── request.ts │ │ │ ├── request_interface.ts │ │ │ ├── resource_dir.ts │ │ │ ├── revisions.ts │ │ │ ├── sanitize_attribute_name.spec.ts │ │ │ ├── sanitize_attribute_name.ts │ │ │ ├── scheduler.ts │ │ │ ├── script.spec.ts │ │ │ ├── script.ts │ │ │ ├── script_context.ts │ │ │ ├── search │ │ │ │ ├── expressions │ │ │ │ │ ├── ancestor.ts │ │ │ │ │ ├── and.ts │ │ │ │ │ ├── attribute_exists.ts │ │ │ │ │ ├── child_of.ts │ │ │ │ │ ├── descendant_of.ts │ │ │ │ │ ├── expression.ts │ │ │ │ │ ├── is_hidden.ts │ │ │ │ │ ├── label_comparison.ts │ │ │ │ │ ├── not.ts │ │ │ │ │ ├── note_content_fulltext.spec.ts │ │ │ │ │ ├── note_content_fulltext.ts │ │ │ │ │ ├── note_flat_text.ts │ │ │ │ │ ├── or.ts │ │ │ │ │ ├── order_by_and_limit.ts │ │ │ │ │ ├── parent_of.ts │ │ │ │ │ ├── property_comparison.ts │ │ │ │ │ ├── relation_where.ts │ │ │ │ │ └── true.ts │ │ │ │ ├── note_set.ts │ │ │ │ ├── search_context.ts │ │ │ │ ├── search_result.ts │ │ │ │ ├── services │ │ │ │ │ ├── build_comparator.ts │ │ │ │ │ ├── handle_parens.spec.ts │ │ │ │ │ ├── handle_parens.ts │ │ │ │ │ ├── lex.spec.ts │ │ │ │ │ ├── lex.ts │ │ │ │ │ ├── parse.spec.ts │ │ │ │ │ ├── parse.ts │ │ │ │ │ ├── progressive_search.spec.ts │ │ │ │ │ ├── search.spec.ts │ │ │ │ │ ├── search.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── utils │ │ │ │ │ ├── text_utils.spec.ts │ │ │ │ │ └── text_utils.ts │ │ │ │ ├── value_extractor.spec.ts │ │ │ │ └── value_extractor.ts │ │ │ ├── session_secret.ts │ │ │ ├── setup.ts │ │ │ ├── spaced_update.ts │ │ │ ├── special_notes.ts │ │ │ ├── sql.ts │ │ │ ├── sql_init.ts │ │ │ ├── sync.ts │ │ │ ├── sync_mutex.ts │ │ │ ├── sync_options.ts │ │ │ ├── sync_update.ts │ │ │ ├── task_context.ts │ │ │ ├── totp.ts │ │ │ ├── tray.ts │ │ │ ├── tree.spec.ts │ │ │ ├── tree.ts │ │ │ ├── utils.spec.ts │ │ │ ├── utils.ts │ │ │ ├── window.ts │ │ │ ├── ws.spec.ts │ │ │ └── ws.ts │ │ ├── share │ │ │ ├── content_renderer.spec.ts │ │ │ ├── content_renderer.ts │ │ │ ├── routes.spec.ts │ │ │ ├── routes.ts │ │ │ ├── shaca │ │ │ │ ├── entities │ │ │ │ │ ├── abstract_shaca_entity.ts │ │ │ │ │ ├── rows.ts │ │ │ │ │ ├── sattachment.ts │ │ │ │ │ ├── sattribute.ts │ │ │ │ │ ├── sbranch.ts │ │ │ │ │ └── snote.ts │ │ │ │ ├── shaca-interface.ts │ │ │ │ ├── shaca.ts │ │ │ │ └── shaca_loader.ts │ │ │ ├── share_root.ts │ │ │ └── sql.ts │ │ ├── test │ │ │ └── becca_mocking.ts │ │ ├── types.d.ts │ │ └── www.ts │ ├── start-docker.sh │ ├── test_search_integration.js │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.build.config.mts ├── web-clipper │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── background.js │ ├── bin │ │ ├── release-chrome.sh │ │ ├── release-firefox.sh │ │ └── release.sh │ ├── build.js │ ├── content.js │ ├── icons │ │ ├── 32-dev.png │ │ ├── 32.png │ │ ├── 48.png │ │ └── 96.png │ ├── lib │ │ ├── JSDOMParser.js │ │ ├── Readability-readerable.js │ │ ├── Readability.js │ │ ├── browser-polyfill.js │ │ ├── cash.min.js │ │ └── toast.js │ ├── manifest.json │ ├── options │ │ ├── options.html │ │ └── options.js │ ├── popup │ │ ├── popup.css │ │ ├── popup.html │ │ └── popup.js │ ├── trilium-web-clipper.iml │ ├── trilium_server_facade.js │ └── utils.js └── website │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public │ ├── collection_board.webp │ ├── collection_calendar.webp │ ├── collection_geomap.webp │ ├── collection_table.webp │ ├── screenshot_desktop_mac_dark.webp │ ├── screenshot_desktop_mac_light.webp │ ├── screenshot_desktop_win_dark.webp │ ├── screenshot_desktop_win_light.webp │ ├── type_canvas.webp │ ├── type_code.webp │ ├── type_file.webp │ ├── type_mermaid.webp │ ├── type_mindmap.webp │ └── type_text.webp │ ├── src │ ├── assets │ │ ├── boxicons │ │ │ ├── bx-arrow-in-down-square-half.svg │ │ │ ├── bx-buy-me-a-coffee.svg │ │ │ ├── bx-calendar.svg │ │ │ ├── bx-chevrons-up.svg │ │ │ ├── bx-code.svg │ │ │ ├── bx-columns-3.svg │ │ │ ├── bx-discussion.svg │ │ │ ├── bx-docker.svg │ │ │ ├── bx-extension.svg │ │ │ ├── bx-file.svg │ │ │ ├── bx-folder.svg │ │ │ ├── bx-github.svg │ │ │ ├── bx-globe.svg │ │ │ ├── bx-help-circle.svg │ │ │ ├── bx-history.svg │ │ │ ├── bx-map.svg │ │ │ ├── bx-menu.svg │ │ │ ├── bx-message-dots.svg │ │ │ ├── bx-network-chart.svg │ │ │ ├── bx-note.svg │ │ │ ├── bx-paperclip.svg │ │ │ ├── bx-paypal.svg │ │ │ ├── bx-pen.svg │ │ │ ├── bx-reddit.svg │ │ │ ├── bx-refresh-cw.svg │ │ │ ├── bx-search.svg │ │ │ ├── bx-send-alt.svg │ │ │ ├── bx-shield.svg │ │ │ ├── bx-swap-horizontal.svg │ │ │ ├── bx-table.svg │ │ │ ├── bx-tag.svg │ │ │ └── bx-vector-square.svg │ │ ├── favicon.ico │ │ └── icon-color.svg │ ├── components │ │ ├── Button.css │ │ ├── Button.tsx │ │ ├── Card.tsx │ │ ├── DownloadButton.css │ │ ├── DownloadButton.tsx │ │ ├── Footer.css │ │ ├── Footer.tsx │ │ ├── Header.css │ │ ├── Header.tsx │ │ ├── Icon.tsx │ │ └── Section.tsx │ ├── download-helper.ts │ ├── hooks.tsx │ ├── index.tsx │ ├── pages │ │ ├── GetStarted │ │ │ ├── get-started.css │ │ │ └── get-started.tsx │ │ ├── Home │ │ │ ├── index.css │ │ │ └── index.tsx │ │ ├── SupportUs │ │ │ ├── SupportUs.css │ │ │ └── SupportUs.tsx │ │ ├── _404.css │ │ └── _404.tsx │ └── style.css │ ├── tsconfig.json │ ├── types-assets.d.ts │ └── vite.config.ts ├── docker-compose.rootless.yml ├── docker-compose.yml ├── docs ├── .pages ├── CNAME ├── Developer Guide │ ├── !!!meta.json │ └── Developer Guide │ │ ├── Building and deployment │ │ └── Nix flake.md │ │ ├── Development and architecture │ │ ├── Adding a new note type │ │ │ ├── Copy image reference to the cl.md │ │ │ ├── Export diagram as SVG.md │ │ │ ├── First steps.md │ │ │ ├── First steps │ │ │ │ └── mind_map.js │ │ │ ├── Loading data.md │ │ │ ├── Note type checklist.md │ │ │ ├── SVG rendering.md │ │ │ └── Saving data via spaced update.md │ │ ├── Backlinks.md │ │ ├── Branch prefixes.md │ │ ├── Build information.md │ │ ├── Database │ │ │ ├── attachments.md │ │ │ ├── attributes.md │ │ │ ├── blobs.md │ │ │ ├── branches.md │ │ │ ├── entity_changes.md │ │ │ ├── etapi_tokens.md │ │ │ ├── notes.md │ │ │ ├── options.md │ │ │ ├── recent_notes.md │ │ │ └── revisions.md │ │ ├── Deleted notes.md │ │ ├── Demo document.md │ │ ├── Docker.md │ │ ├── Hidden notes.md │ │ ├── Icons.md │ │ ├── Icons │ │ │ ├── 1_Icons on Mac_image.png │ │ │ ├── Icons on Mac.md │ │ │ ├── Icons on Mac │ │ │ │ ├── 1_Adaptive icon_image.png │ │ │ │ ├── 1_Slightly blurry icon on Ma.png │ │ │ │ ├── 2_Adaptive icon_image.png │ │ │ │ ├── 2_Slightly blurry icon on Ma.png │ │ │ │ ├── 3_Adaptive icon_image.png │ │ │ │ ├── 4_Adaptive icon_image.png │ │ │ │ ├── 5_Adaptive icon_image.png │ │ │ │ ├── 6_Adaptive icon_image.png │ │ │ │ ├── Adaptive icon.md │ │ │ │ ├── Adaptive icon_image.png │ │ │ │ ├── Slightly blurry icon on Ma.png │ │ │ │ └── Slightly blurry icon on Mac.md │ │ │ ├── Icons on Mac_image.png │ │ │ └── Removed icons.md │ │ ├── Internationalisation Translat.md │ │ ├── Internationalisation Translations │ │ │ ├── Guidelines.md │ │ │ ├── Server translations.md │ │ │ └── i18n-ally.md │ │ ├── Launchers.md │ │ ├── Live reload.md │ │ ├── Note types.md │ │ ├── Options.md │ │ ├── Options │ │ │ ├── Check box option.md │ │ │ ├── Creating a new option.md │ │ │ ├── Displaying the option in setti.md │ │ │ ├── Refresh widget with option cha.md │ │ │ └── Trigger UI refresh.md │ │ ├── Printing.md │ │ ├── Protected entities.md │ │ ├── Revisions.md │ │ ├── Safe mode.md │ │ ├── Special notes.md │ │ ├── Synchronisation │ │ │ └── Content hashing.md │ │ ├── Syntax highlighting.md │ │ └── Themes.md │ │ ├── Environment Setup.md │ │ ├── Old documentation │ │ ├── Build deliveries locally.md │ │ ├── Building and deployment │ │ │ ├── Build deliveries locally.clone.md │ │ │ ├── CI │ │ │ │ ├── 1_Main_image.png │ │ │ │ ├── Main.md │ │ │ │ └── Main_image.png │ │ │ ├── Documentation.md │ │ │ ├── Releasing a version.clone.md │ │ │ └── Running a development build.clone.md │ │ ├── Dependency Management │ │ │ ├── Adding a new client library.md │ │ │ └── Having a simpler packaging sys.md │ │ ├── Documentation.md │ │ ├── Documentation │ │ │ └── Documentation references in th.md │ │ ├── Documentation_image.png │ │ ├── Installation │ │ │ └── Download latest nightly and in.md │ │ ├── Project maintenance │ │ │ ├── Updating dependencies.md │ │ │ └── Updating dependencies │ │ │ │ ├── Node.js, Electron and `better-.md │ │ │ │ ├── Testing compatibility.md │ │ │ │ └── bettersqlite binaries.md │ │ ├── Releasing a version.md │ │ ├── Running a development build.md │ │ ├── Scripting │ │ │ ├── Server-side imports.md │ │ │ ├── Widgets.md │ │ │ └── Widgets │ │ │ │ ├── CSS.md │ │ │ │ └── Right pane widget.md │ │ ├── Sub-projects │ │ │ ├── CKEditor │ │ │ │ ├── Building the editor.md │ │ │ │ ├── Differences from upstream.md │ │ │ │ ├── Environment setup.md │ │ │ │ ├── Updating to a newer version of.md │ │ │ │ └── Versions and external plugins.md │ │ │ ├── ckeditor5-math.md │ │ │ ├── ckeditor5-math │ │ │ │ ├── Release management & continuou.md │ │ │ │ └── Updating with upstream.md │ │ │ └── ckeditor5-math_image.png │ │ ├── Testing.md │ │ ├── Testing │ │ │ └── Integration testing │ │ │ │ ├── 1_Setting up authentication_.png │ │ │ │ ├── Running tests.md │ │ │ │ ├── Setting up authentication.md │ │ │ │ ├── Setting up authentication_.png │ │ │ │ └── Test database.md │ │ └── Troubleshooting │ │ │ └── Error [TransformError] The pac.md │ │ ├── Project Structure.md │ │ ├── Project Structure │ │ ├── CKEditor.md │ │ └── CKEditor │ │ │ └── Plugin migration guide.md │ │ └── Troubleshooting │ │ └── better-sqlite3 was compiled ag.md ├── README-ZH_CN.md ├── README-ZH_TW.md ├── README.es.md ├── README.it.md ├── README.ja.md ├── README.md ├── README.ru.md ├── RPM-GPG-KEY-trilium ├── Release Notes │ ├── !!!meta.json │ └── Release Notes │ │ ├── Release Template.md │ │ ├── v0.90.0-beta.md │ │ ├── v0.90.1-beta.md │ │ ├── v0.90.10-beta.md │ │ ├── v0.90.11-beta.md │ │ ├── v0.90.12.md │ │ ├── v0.90.2-beta.md │ │ ├── v0.90.3.md │ │ ├── v0.90.4.md │ │ ├── v0.90.5-beta.md │ │ ├── v0.90.5-beta_image.png │ │ ├── v0.90.6-beta.md │ │ ├── v0.90.7-beta.md │ │ ├── v0.90.8.md │ │ ├── v0.90.9-beta.md │ │ ├── v0.91.1-beta.md │ │ ├── v0.91.2-beta.md │ │ ├── v0.91.3-beta.md │ │ ├── v0.91.4-beta.md │ │ ├── v0.91.5.md │ │ ├── v0.91.6.md │ │ ├── v0.92.0-beta.md │ │ ├── v0.92.1-beta.md │ │ ├── v0.92.2-beta.md │ │ ├── v0.92.3-beta.md │ │ ├── v0.92.4.md │ │ ├── v0.92.5-beta.md │ │ ├── v0.92.6.md │ │ ├── v0.92.7.md │ │ ├── v0.93.0.md │ │ ├── v0.94.0.md │ │ ├── v0.94.1.md │ │ ├── v0.95.0.md │ │ ├── v0.96.0.md │ │ ├── v0.97.0.md │ │ ├── v0.97.1.md │ │ ├── v0.97.2.md │ │ ├── v0.98.0.md │ │ ├── v0.98.1.md │ │ └── v0.99.0.md ├── Script API │ ├── .nojekyll │ ├── assets │ │ ├── hierarchy.js │ │ ├── highlight.css │ │ ├── icons.js │ │ ├── icons.svg │ │ ├── main.js │ │ ├── navigation.js │ │ ├── search.js │ │ └── style.css │ ├── classes │ │ ├── Backend_Script_API.AbstractBeccaEntity.html │ │ ├── Backend_Script_API.BAttachment.html │ │ ├── Backend_Script_API.BAttribute.html │ │ ├── Backend_Script_API.BBranch.html │ │ ├── Backend_Script_API.BEtapiToken.html │ │ ├── Backend_Script_API.BNote.html │ │ ├── Backend_Script_API.BOption.html │ │ ├── Backend_Script_API.BRecentNote.html │ │ ├── Backend_Script_API.BRevision.html │ │ ├── Backend_Script_API._internal_.AsyncResource.html │ │ ├── Backend_Script_API._internal_.Axios.html │ │ ├── Backend_Script_API._internal_.AxiosError.html │ │ ├── Backend_Script_API._internal_.AxiosHeaders.html │ │ ├── Backend_Script_API._internal_.CanceledError.html │ │ ├── Backend_Script_API._internal_.EventEmitter.EventEmitterAsyncResource.html │ │ ├── Backend_Script_API._internal_.EventEmitter.html │ │ ├── Backend_Script_API._internal_.SpacedUpdate.html │ │ ├── Backend_Script_API._internal_.TaskContext.html │ │ ├── Backend_Script_API._internal_.default.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.Builder.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.Parser.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.ValidationError.html │ │ ├── Frontend_Script_API.BasicWidget.html │ │ ├── Frontend_Script_API.FAttachment.html │ │ ├── Frontend_Script_API.FAttribute.html │ │ ├── Frontend_Script_API.FBranch.html │ │ ├── Frontend_Script_API.FNote.html │ │ ├── Frontend_Script_API.NoteContextAwareWidget.html │ │ ├── Frontend_Script_API.RightPanelWidget.html │ │ ├── Frontend_Script_API._internal_.NoteContext.html │ │ ├── Frontend_Script_API._internal_.TypedBasicWidget.html │ │ ├── Frontend_Script_API._internal_.TypedComponent.html │ │ ├── Frontend_Script_API._internal_.default-1.html │ │ ├── Frontend_Script_API._internal_.default-2.html │ │ ├── Frontend_Script_API._internal_.default-3.html │ │ ├── Frontend_Script_API._internal_.default-4.html │ │ ├── Frontend_Script_API._internal_.default-5.html │ │ ├── Frontend_Script_API._internal_.default-6.html │ │ ├── Frontend_Script_API._internal_.default-7.html │ │ └── Frontend_Script_API._internal_.default.html │ ├── enums │ │ ├── Backend_Script_API._internal_.HttpStatusCode.html │ │ ├── Frontend_Script_API._internal_.FancytreeClickFolderMode.html │ │ └── Frontend_Script_API._internal_.FancytreeSelectMode.html │ ├── functions │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.parseString.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.parseStringPromise.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.processors.firstCharLowerCase.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.processors.normalize.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.processors.parseBooleans.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.processors.parseNumbers.html │ │ └── Backend_Script_API._internal_.node_modules__types_xml2js.processors.stripPrefix.html │ ├── hierarchy.html │ ├── index.html │ ├── interfaces │ │ ├── Backend_Script_API.Api.html │ │ ├── Backend_Script_API._internal_.AsyncResourceOptions.html │ │ ├── Backend_Script_API._internal_.AttachmentOpts.html │ │ ├── Backend_Script_API._internal_.AttachmentRow.html │ │ ├── Backend_Script_API._internal_.AttributeRow.html │ │ ├── Backend_Script_API._internal_.AxiosAdapter.html │ │ ├── Backend_Script_API._internal_.AxiosBasicCredentials.html │ │ ├── Backend_Script_API._internal_.AxiosDefaults.html │ │ ├── Backend_Script_API._internal_.AxiosInstance.html │ │ ├── Backend_Script_API._internal_.AxiosInterceptorManager.html │ │ ├── Backend_Script_API._internal_.AxiosInterceptorOptions.html │ │ ├── Backend_Script_API._internal_.AxiosProgressEvent.html │ │ ├── Backend_Script_API._internal_.AxiosProxyConfig.html │ │ ├── Backend_Script_API._internal_.AxiosRequestConfig.html │ │ ├── Backend_Script_API._internal_.AxiosRequestTransformer.html │ │ ├── Backend_Script_API._internal_.AxiosResponse.html │ │ ├── Backend_Script_API._internal_.AxiosResponseTransformer.html │ │ ├── Backend_Script_API._internal_.AxiosStatic.html │ │ ├── Backend_Script_API._internal_.BranchRow.html │ │ ├── Backend_Script_API._internal_.CallSite.html │ │ ├── Backend_Script_API._internal_.Cancel.html │ │ ├── Backend_Script_API._internal_.CancelStatic.html │ │ ├── Backend_Script_API._internal_.CancelToken.html │ │ ├── Backend_Script_API._internal_.CancelTokenSource.html │ │ ├── Backend_Script_API._internal_.CancelTokenStatic.html │ │ ├── Backend_Script_API._internal_.Canceler.html │ │ ├── Backend_Script_API._internal_.Cheerio.html │ │ ├── Backend_Script_API._internal_.CheerioAPI.html │ │ ├── Backend_Script_API._internal_.CheerioParserOptions.html │ │ ├── Backend_Script_API._internal_.CloneResponse.html │ │ ├── Backend_Script_API._internal_.CommentElement.html │ │ ├── Backend_Script_API._internal_.ContentOpts-1.html │ │ ├── Backend_Script_API._internal_.ContentOpts-2.html │ │ ├── Backend_Script_API._internal_.ContentOpts-3.html │ │ ├── Backend_Script_API._internal_.ContentOpts.html │ │ ├── Backend_Script_API._internal_.ConvertOpts.html │ │ ├── Backend_Script_API._internal_.CreateAxiosDefaults.html │ │ ├── Backend_Script_API._internal_.CustomParamsSerializer.html │ │ ├── Backend_Script_API._internal_.DefinitionObject.html │ │ ├── Backend_Script_API._internal_.Disposable.html │ │ ├── Backend_Script_API._internal_.EtapiTokenRow.html │ │ ├── Backend_Script_API._internal_.EventEmitter.Abortable.html │ │ ├── Backend_Script_API._internal_.EventEmitter.EventEmitterAsyncResourceOptions.html │ │ ├── Backend_Script_API._internal_.EventEmitter.EventEmitterReferencingAsyncResource.html │ │ ├── Backend_Script_API._internal_.EventEmitter.html │ │ ├── Backend_Script_API._internal_.EventEmitterOptions.html │ │ ├── Backend_Script_API._internal_.FormDataVisitorHelpers.html │ │ ├── Backend_Script_API._internal_.FormSerializerOptions.html │ │ ├── Backend_Script_API._internal_.GenericAbortSignal.html │ │ ├── Backend_Script_API._internal_.GenericFormData.html │ │ ├── Backend_Script_API._internal_.GenericHTMLFormElement.html │ │ ├── Backend_Script_API._internal_.GetByIdOpts.html │ │ ├── Backend_Script_API._internal_.HeadersDefaults.html │ │ ├── Backend_Script_API._internal_.InternalAxiosRequestConfig.html │ │ ├── Backend_Script_API._internal_.IterableIterator.html │ │ ├── Backend_Script_API._internal_.Iterator.html │ │ ├── Backend_Script_API._internal_.IteratorReturnResult.html │ │ ├── Backend_Script_API._internal_.IteratorYieldResult.html │ │ ├── Backend_Script_API._internal_.LookupAddressEntry.html │ │ ├── Backend_Script_API._internal_.NoteAndBranch.html │ │ ├── Backend_Script_API._internal_.NoteParams.html │ │ ├── Backend_Script_API._internal_.NotePathRecord.html │ │ ├── Backend_Script_API._internal_.NotePojo.html │ │ ├── Backend_Script_API._internal_.NoteRow.html │ │ ├── Backend_Script_API._internal_.Object.html │ │ ├── Backend_Script_API._internal_.OptionRow.html │ │ ├── Backend_Script_API._internal_.ParamEncoder.html │ │ ├── Backend_Script_API._internal_.ParamsSerializerOptions.html │ │ ├── Backend_Script_API._internal_.RawAxiosHeaders.html │ │ ├── Backend_Script_API._internal_.RecentNoteRow.html │ │ ├── Backend_Script_API._internal_.Relationship.html │ │ ├── Backend_Script_API._internal_.RevisionRow.html │ │ ├── Backend_Script_API._internal_.Root.html │ │ ├── Backend_Script_API._internal_.SavingOpts.html │ │ ├── Backend_Script_API._internal_.SearchParams.html │ │ ├── Backend_Script_API._internal_.Selector.html │ │ ├── Backend_Script_API._internal_.SerializerOptions.html │ │ ├── Backend_Script_API._internal_.SerializerVisitor.html │ │ ├── Backend_Script_API._internal_.StaticEventEmitterIteratorOptions.html │ │ ├── Backend_Script_API._internal_.StaticEventEmitterOptions.html │ │ ├── Backend_Script_API._internal_.TagElement.html │ │ ├── Backend_Script_API._internal_.TaskData.html │ │ ├── Backend_Script_API._internal_.TextElement.html │ │ ├── Backend_Script_API._internal_.TransitionalOptions.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.BuilderOptions.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.ParserOptions.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.RenderOptions.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.XmlDeclarationAttributes.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.convertableToString.html │ │ ├── Frontend_Script_API.Api.html │ │ ├── Frontend_Script_API._internal_.AddToToolbarOpts.html │ │ ├── Frontend_Script_API._internal_.Attribute.html │ │ ├── Frontend_Script_API._internal_.BaseJQueryEventObject.html │ │ ├── Frontend_Script_API._internal_.CKEvent.html │ │ ├── Frontend_Script_API._internal_.CKNode.html │ │ ├── Frontend_Script_API._internal_.CodeMirrorInstance.html │ │ ├── Frontend_Script_API._internal_.CommandData.html │ │ ├── Frontend_Script_API._internal_.ConfirmDialogOptions.html │ │ ├── Frontend_Script_API._internal_.ConfirmWithMessageOptions.html │ │ ├── Frontend_Script_API._internal_.ConfirmWithTitleOptions.html │ │ ├── Frontend_Script_API._internal_.ContextMenuCommandData.html │ │ ├── Frontend_Script_API._internal_.CreateLinkOptions.html │ │ ├── Frontend_Script_API._internal_.DefinitionObject.html │ │ ├── Frontend_Script_API._internal_.DragAndDrop5.html │ │ ├── Frontend_Script_API._internal_.Event.html │ │ ├── Frontend_Script_API._internal_.EventData.html │ │ ├── Frontend_Script_API._internal_.ExecuteCommandData.html │ │ ├── Frontend_Script_API._internal_.FAttachmentRow.html │ │ ├── Frontend_Script_API._internal_.FAttributeRow.html │ │ ├── Frontend_Script_API._internal_.FBranchRow.html │ │ ├── Frontend_Script_API._internal_.FNoteRow.html │ │ ├── Frontend_Script_API._internal_.Fancytree.html │ │ ├── Frontend_Script_API._internal_.FancytreeEvents.html │ │ ├── Frontend_Script_API._internal_.FancytreeNode.html │ │ ├── Frontend_Script_API._internal_.FancytreeOptions.html │ │ ├── Frontend_Script_API._internal_.Filter.html │ │ ├── Frontend_Script_API._internal_.Froca.html │ │ ├── Frontend_Script_API._internal_.JQueryEventObject.html │ │ ├── Frontend_Script_API._internal_.JQueryInputEventObject.html │ │ ├── Frontend_Script_API._internal_.JQueryKeyEventObject.html │ │ ├── Frontend_Script_API._internal_.JQueryMouseEventObject.html │ │ ├── Frontend_Script_API._internal_.JQueryPromise.html │ │ ├── Frontend_Script_API._internal_.List.html │ │ ├── Frontend_Script_API._internal_.Marker.html │ │ ├── Frontend_Script_API._internal_.MentionConfig.html │ │ ├── Frontend_Script_API._internal_.MentionItem.html │ │ ├── Frontend_Script_API._internal_.MouseDownEvent.html │ │ ├── Frontend_Script_API._internal_.MouseEventBase.html │ │ ├── Frontend_Script_API._internal_.NodeData.html │ │ ├── Frontend_Script_API._internal_.NodePatch.html │ │ ├── Frontend_Script_API._internal_.NoteCommandData.html │ │ ├── Frontend_Script_API._internal_.NoteMetaData.html │ │ ├── Frontend_Script_API._internal_.NotePathRecord.html │ │ ├── Frontend_Script_API._internal_.NoteSwitchedContext.html │ │ ├── Frontend_Script_API._internal_.PersistData.html │ │ ├── Frontend_Script_API._internal_.Promise.html │ │ ├── Frontend_Script_API._internal_.PromiseBase.html │ │ ├── Frontend_Script_API._internal_.PromiseLike.html │ │ ├── Frontend_Script_API._internal_.PromptDialogOptions.html │ │ ├── Frontend_Script_API._internal_.ResolveOptions.html │ │ ├── Frontend_Script_API._internal_.SetNoteOpts.html │ │ ├── Frontend_Script_API._internal_.ShownCallbackData.html │ │ ├── Frontend_Script_API._internal_.Table.html │ │ ├── Frontend_Script_API._internal_.TextEditor.html │ │ ├── Frontend_Script_API._internal_.TextNode.html │ │ ├── Frontend_Script_API._internal_.TextPosition.html │ │ ├── Frontend_Script_API._internal_.TextRange.html │ │ ├── Frontend_Script_API._internal_.Thenable.html │ │ ├── Frontend_Script_API._internal_.TranslationTable.html │ │ ├── Frontend_Script_API._internal_.TriggeredEvent.html │ │ ├── Frontend_Script_API._internal_.UIEventBase.html │ │ ├── Frontend_Script_API._internal_.ViewScope.html │ │ └── Frontend_Script_API._internal_.Writer.html │ ├── media │ │ ├── README-ZH_CN.md │ │ ├── README.es.md │ │ ├── README.it.md │ │ ├── README.ja.md │ │ ├── README.md │ │ └── README.ru.md │ ├── modules.html │ ├── modules │ │ ├── Backend_Script_API._internal_.EventEmitter.html │ │ ├── Backend_Script_API._internal_.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.processors.html │ │ ├── Backend_Script_API.html │ │ ├── Frontend_Script_API._internal_.html │ │ └── Frontend_Script_API.html │ ├── types │ │ ├── Backend_Script_API._internal_.AddressFamily.html │ │ ├── Backend_Script_API._internal_.AnyRest.html │ │ ├── Backend_Script_API._internal_.Args.html │ │ ├── Backend_Script_API._internal_.ArrayBufferLike.html │ │ ├── Backend_Script_API._internal_.AttrFunction.html │ │ ├── Backend_Script_API._internal_.AttributeType.html │ │ ├── Backend_Script_API._internal_.AxiosAdapterConfig.html │ │ ├── Backend_Script_API._internal_.AxiosAdapterName.html │ │ ├── Backend_Script_API._internal_.AxiosHeaderMatcher.html │ │ ├── Backend_Script_API._internal_.AxiosHeaderParser.html │ │ ├── Backend_Script_API._internal_.AxiosHeaderValue.html │ │ ├── Backend_Script_API._internal_.AxiosPromise.html │ │ ├── Backend_Script_API._internal_.AxiosRequestHeaders.html │ │ ├── Backend_Script_API._internal_.AxiosRequestInterceptorUse.html │ │ ├── Backend_Script_API._internal_.AxiosResponseHeaders.html │ │ ├── Backend_Script_API._internal_.AxiosResponseInterceptorUse.html │ │ ├── Backend_Script_API._internal_.CommonRequestHeadersList.html │ │ ├── Backend_Script_API._internal_.CommonResponseHeadersList.html │ │ ├── Backend_Script_API._internal_.ContentType.html │ │ ├── Backend_Script_API._internal_.DefaultEventMap.html │ │ ├── Backend_Script_API._internal_.Element.html │ │ ├── Backend_Script_API._internal_.EventMap.html │ │ ├── Backend_Script_API._internal_.Exclude.html │ │ ├── Backend_Script_API._internal_.IteratorResult.html │ │ ├── Backend_Script_API._internal_.Key.html │ │ ├── Backend_Script_API._internal_.Key2.html │ │ ├── Backend_Script_API._internal_.Listener.html │ │ ├── Backend_Script_API._internal_.LookupAddress.html │ │ ├── Backend_Script_API._internal_.Omit.html │ │ ├── Backend_Script_API._internal_.Partial.html │ │ ├── Backend_Script_API._internal_.Pick.html │ │ ├── Backend_Script_API._internal_.PropertyKey.html │ │ ├── Backend_Script_API._internal_.RawAxiosRequestHeaders.html │ │ ├── Backend_Script_API._internal_.RawAxiosResponseHeaders.html │ │ ├── Backend_Script_API._internal_.RawCommonResponseHeaders.html │ │ ├── Backend_Script_API._internal_.Record.html │ │ ├── Backend_Script_API._internal_.ResponseType.html │ │ ├── Backend_Script_API._internal_.Updater.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.Options.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.OptionsV2.html │ │ ├── Frontend_Script_API._internal_.AttributeType.html │ │ ├── Frontend_Script_API._internal_.CallbackBase.html │ │ ├── Frontend_Script_API._internal_.CommandAndEventMappings.html │ │ ├── Frontend_Script_API._internal_.CommandMappings.html │ │ ├── Frontend_Script_API._internal_.CommandNames.html │ │ ├── Frontend_Script_API._internal_.ConfirmDialogCallback.html │ │ ├── Frontend_Script_API._internal_.ConfirmDialogResult.html │ │ ├── Frontend_Script_API._internal_.ElementType.html │ │ ├── Frontend_Script_API._internal_.EventData.html │ │ ├── Frontend_Script_API._internal_.EventListener.html │ │ ├── Frontend_Script_API._internal_.EventMappings.html │ │ ├── Frontend_Script_API._internal_.EventNames.html │ │ ├── Frontend_Script_API._internal_.EventOnlyNames.html │ │ ├── Frontend_Script_API._internal_.Func.html │ │ ├── Frontend_Script_API._internal_.GetTextEditorCallback.html │ │ ├── Frontend_Script_API._internal_.Handler.html │ │ ├── Frontend_Script_API._internal_.LabelType.html │ │ ├── Frontend_Script_API._internal_.Multiplicity.html │ │ ├── Frontend_Script_API._internal_.NoteType.html │ │ ├── Frontend_Script_API._internal_.PromptShownDialogCallback.html │ │ ├── Frontend_Script_API._internal_.Required.html │ │ ├── Frontend_Script_API._internal_.Screen.html │ │ ├── Frontend_Script_API._internal_.SqlExecuteResults.html │ │ └── Frontend_Script_API._internal_.TypeOrArray.html │ └── variables │ │ ├── Backend_Script_API._internal_.Object.html │ │ ├── Backend_Script_API._internal_.node_modules__types_xml2js.defaults.html │ │ ├── Backend_Script_API.api.html │ │ └── Frontend_Script_API.api.html ├── User Guide │ ├── !!!meta.json │ ├── User Guide.md │ └── User Guide │ │ ├── AI │ │ ├── 1_AI Provider Information_im.png │ │ ├── 1_Introduction_image.png │ │ ├── 2_Introduction_image.png │ │ ├── 3_Introduction_image.png │ │ ├── 4_Introduction_image.png │ │ ├── 5_Introduction_image.png │ │ ├── 6_Introduction_image.png │ │ ├── 7_Introduction_image.png │ │ ├── 8_Introduction_image.png │ │ ├── 9_Introduction_image.png │ │ ├── AI Provider Information.md │ │ ├── AI Provider Information │ │ │ ├── Anthropic.md │ │ │ ├── Ollama │ │ │ │ ├── 1_Installing Ollama_image.png │ │ │ │ ├── 2_Installing Ollama_image.png │ │ │ │ ├── 3_Installing Ollama_image.png │ │ │ │ ├── 4_Installing Ollama_image.png │ │ │ │ ├── 5_Installing Ollama_image.png │ │ │ │ ├── Installing Ollama.md │ │ │ │ └── Installing Ollama_image.png │ │ │ └── OpenAI.md │ │ ├── AI Provider Information_im.png │ │ ├── Introduction.md │ │ └── Introduction_image.png │ │ ├── Advanced Usage │ │ ├── 1_Metrics_image.png │ │ ├── 1_Note Map (Link map, Tree m.png │ │ ├── 2_Metrics_image.png │ │ ├── Advanced Showcases.md │ │ ├── Advanced Showcases │ │ │ ├── 1_Day Notes_image.png │ │ │ ├── Day Notes.md │ │ │ ├── Day Notes_image.png │ │ │ ├── Task Manager.md │ │ │ ├── Task Manager_task-manager.png │ │ │ ├── Weight Tracker.md │ │ │ └── Weight Tracker_image.png │ │ ├── Attributes.md │ │ ├── Attributes │ │ │ ├── Attribute Inheritance.md │ │ │ ├── Labels.md │ │ │ ├── Promoted Attributes.md │ │ │ ├── Promoted Attributes_image.png │ │ │ ├── Promoted Attributes_promot.png │ │ │ └── Relations.md │ │ ├── Attributes_image.png │ │ ├── Bulk Actions.md │ │ ├── Bulk Actions_image.png │ │ ├── Configuration (config.ini or e.md │ │ ├── Configuration (config.ini or environment variables) │ │ │ ├── Cross-Origin Resource Sharing .md │ │ │ └── Trilium instance.md │ │ ├── Custom Request Handler.md │ │ ├── Custom Resource Providers.md │ │ ├── Database.md │ │ ├── Database │ │ │ ├── Demo Notes.md │ │ │ ├── Manually altering the data.png │ │ │ ├── Manually altering the database.md │ │ │ └── Manually altering the database │ │ │ │ ├── 1_SQL Console_image.png │ │ │ │ ├── 2_SQL Console_image.png │ │ │ │ ├── 3_SQL Console_image.png │ │ │ │ ├── SQL Console.md │ │ │ │ └── SQL Console_image.png │ │ ├── Default Note Title.md │ │ ├── ETAPI (REST API).md │ │ ├── ETAPI (REST API) │ │ │ └── API Reference.dat │ │ ├── Hidden Notes.md │ │ ├── Hidden Notes_image.png │ │ ├── Internal API │ │ │ └── API Reference.dat │ │ ├── Metrics.md │ │ ├── Metrics │ │ │ └── grafana-dashboard.json │ │ ├── Metrics_image.png │ │ ├── Note ID.md │ │ ├── Note Map (Link map, Tree m.png │ │ ├── Note Map (Link map, Tree map).md │ │ ├── Note source.md │ │ ├── Note source_image.png │ │ ├── Sharing.md │ │ ├── Sharing │ │ │ ├── 1_Serving directly the conte.png │ │ │ ├── Serving directly the conte.png │ │ │ └── Serving directly the content o.md │ │ ├── Sharing_image.png │ │ ├── Sharing_share-single-note.png │ │ ├── Sharing_shared-list.png │ │ ├── Technologies used.md │ │ ├── Technologies used │ │ │ ├── CKEditor.md │ │ │ ├── Excalidraw.md │ │ │ ├── Leaflet.md │ │ │ └── MindElixir.md │ │ ├── Templates.md │ │ ├── Templates_template-create-.png │ │ └── Templates_template.png │ │ ├── Basic Concepts and Features │ │ ├── 1_Zen mode_image.png │ │ ├── 2_Zen mode_image.png │ │ ├── 3_Zen mode_image.png │ │ ├── Import & Export │ │ │ ├── Evernote.md │ │ │ ├── Markdown.md │ │ │ ├── Markdown │ │ │ │ └── Supported syntax.md │ │ │ ├── Markdown_markdown-export-n.gif │ │ │ ├── Markdown_markdown-export-s.gif │ │ │ ├── Markdown_markdown-file-imp.gif │ │ │ ├── Markdown_markdown-inline-i.gif │ │ │ └── OneNote.md │ │ ├── Keyboard Shortcuts.md │ │ ├── Navigation │ │ │ ├── 1_Jump to_image.png │ │ │ ├── 1_Workspaces_image.png │ │ │ ├── 2_Jump to_image.png │ │ │ ├── Bookmarks.md │ │ │ ├── Bookmarks_bookmark-folder.png │ │ │ ├── Bookmarks_bookmarks.gif │ │ │ ├── Jump to.md │ │ │ ├── Jump to_image.png │ │ │ ├── Note Hoisting.md │ │ │ ├── Note Hoisting_note-hoistin.gif │ │ │ ├── Note Navigation.md │ │ │ ├── Note Navigation_image.png │ │ │ ├── Quick edit.clone.md │ │ │ ├── Quick search.md │ │ │ ├── Quick search_image.png │ │ │ ├── Search in note.md │ │ │ ├── Search in note_image.png │ │ │ ├── Search.md │ │ │ ├── Search_image.png │ │ │ ├── Similar Notes.md │ │ │ ├── Similar Notes_image.png │ │ │ ├── Tree Concepts.md │ │ │ ├── Workspaces.md │ │ │ └── Workspaces_image.png │ │ ├── Notes.md │ │ ├── Notes │ │ │ ├── 1_Export as PDF_image.png │ │ │ ├── Archived Notes.md │ │ │ ├── Archived Notes_hide-archiv.png │ │ │ ├── Attachments.md │ │ │ ├── Cloning Notes.md │ │ │ ├── Cloning Notes │ │ │ │ └── Branch prefix.md │ │ │ ├── Cloning Notes_create-clone.gif │ │ │ ├── Export as PDF.md │ │ │ ├── Export as PDF_image.png │ │ │ ├── Note Icons.md │ │ │ ├── Note Icons_note-icon-chang.png │ │ │ ├── Note Icons_note-icon-galle.png │ │ │ ├── Note List.md │ │ │ ├── Note List_image.png │ │ │ ├── Note Revisions.md │ │ │ ├── Note Revisions_note-revisi.png │ │ │ ├── Protected Notes.md │ │ │ ├── Protected Notes_protecting.gif │ │ │ ├── Read-Only Notes.md │ │ │ ├── Read-Only Notes_image.png │ │ │ └── Sorting Notes.md │ │ ├── Themes.md │ │ ├── Themes │ │ │ └── Theme Gallery.md │ │ ├── Themes_dark-theme.png │ │ ├── Themes_image.png │ │ ├── Themes_steel-blue.png │ │ ├── UI Elements │ │ │ ├── 1_Options_image.png │ │ │ ├── 1_Recent Changes_image.png │ │ │ ├── 1_Tabs_image.png │ │ │ ├── 1_Vertical and horizontal la.png │ │ │ ├── 2_Tabs_image.png │ │ │ ├── 2_Vertical and horizontal la.png │ │ │ ├── 3_Vertical and horizontal la.png │ │ │ ├── 4_Vertical and horizontal la.png │ │ │ ├── 5_Vertical and horizontal la.png │ │ │ ├── Floating buttons.md │ │ │ ├── Floating buttons_image.png │ │ │ ├── Global menu.md │ │ │ ├── Global menu_image.png │ │ │ ├── Launch Bar.md │ │ │ ├── Launch Bar_image.png │ │ │ ├── Note Tooltip.md │ │ │ ├── Note Tooltip_image.png │ │ │ ├── Note Tree.md │ │ │ ├── Note Tree │ │ │ │ ├── 1_Note tree contextual menu_.png │ │ │ │ ├── Keyboard shortcuts.md │ │ │ │ ├── Multiple selection.md │ │ │ │ ├── Multiple selection_image.png │ │ │ │ ├── Note tree contextual menu.md │ │ │ │ └── Note tree contextual menu_.png │ │ │ ├── Note Tree_drag-and-drop.gif │ │ │ ├── Note Tree_image.png │ │ │ ├── Note Tree_move-note-with-k.gif │ │ │ ├── Note buttons.md │ │ │ ├── Note buttons_image.png │ │ │ ├── Options.md │ │ │ ├── Options_image.png │ │ │ ├── Quick edit.md │ │ │ ├── Quick edit_image.png │ │ │ ├── Recent Changes.md │ │ │ ├── Recent Changes_image.png │ │ │ ├── Ribbon.md │ │ │ ├── Ribbon_image.png │ │ │ ├── Right Sidebar.md │ │ │ ├── Right Sidebar_image.png │ │ │ ├── Split View.md │ │ │ ├── Split View_1_Split View_im.png │ │ │ ├── Split View_2_Split View_im.png │ │ │ ├── Split View_3_Split View_im.png │ │ │ ├── Split View_4_Split View_im.png │ │ │ ├── Split View_Split View_imag.png │ │ │ ├── Tabs.md │ │ │ ├── Tabs_image.png │ │ │ ├── Vertical and horizontal la.png │ │ │ ├── Vertical and horizontal layout.md │ │ │ └── Zoom.md │ │ ├── Zen mode.md │ │ └── Zen mode_image.png │ │ ├── FAQ.md │ │ ├── Feature Highlights.md │ │ ├── Installation & Setup │ │ ├── Backup.md │ │ ├── Data directory.md │ │ ├── Data directory_image.png │ │ ├── Desktop Installation.md │ │ ├── Mobile Frontend.md │ │ ├── Mobile Frontend_mobile-sma.png │ │ ├── Mobile Frontend_mobile-tab.png │ │ ├── Server Installation.md │ │ ├── Server Installation │ │ │ ├── 1. Installing the server │ │ │ │ ├── Manually.md │ │ │ │ ├── Multiple server instances.md │ │ │ │ ├── On NixOS.md │ │ │ │ ├── Packaged version for Linux.md │ │ │ │ ├── Using Docker.md │ │ │ │ └── Using Kubernetes.md │ │ │ ├── 2. Reverse proxy │ │ │ │ ├── Apache.md │ │ │ │ └── Nginx.md │ │ │ ├── Authentication.md │ │ │ ├── Multi-Factor Authentication.md │ │ │ └── TLS Configuration.md │ │ ├── Synchronization.md │ │ ├── Synchronization_image.png │ │ ├── Synchronization_sync-confi.png │ │ ├── Synchronization_sync-in-pr.png │ │ ├── Synchronization_sync-init.png │ │ ├── Upgrading TriliumNext.md │ │ ├── Web Clipper.md │ │ └── Web Clipper_image.png │ │ ├── Note Types.md │ │ ├── Note Types │ │ ├── 1_Code_image.png │ │ ├── 1_File_image.png │ │ ├── 1_Mermaid Diagrams_image.png │ │ ├── 1_Relation Map_relation-map-.gif │ │ ├── 1_Relation Map_relation-map-.png │ │ ├── 1_Text_image.png │ │ ├── 2_File_image.png │ │ ├── 2_Mermaid Diagrams_image.png │ │ ├── 2_Text_image.png │ │ ├── 3_File_image.png │ │ ├── 4_File_image.png │ │ ├── 5_File_image.png │ │ ├── 6_File_image.png │ │ ├── Canvas.md │ │ ├── Canvas_image.png │ │ ├── Code.md │ │ ├── Code_image.png │ │ ├── Collections.md │ │ ├── Collections │ │ │ ├── 10_Calendar View_image.png │ │ │ ├── 10_Geo Map View_image.png │ │ │ ├── 11_Calendar View_image.png │ │ │ ├── 11_Geo Map View_image.png │ │ │ ├── 12_Geo Map View_image.png │ │ │ ├── 13_Geo Map View_image.png │ │ │ ├── 14_Geo Map View_image.png │ │ │ ├── 15_Geo Map View_image.png │ │ │ ├── 16_Geo Map View_image.png │ │ │ ├── 17_Geo Map View_image.png │ │ │ ├── 18_Geo Map View_image.png │ │ │ ├── 1_Calendar View_image.png │ │ │ ├── 1_Geo Map View_image.png │ │ │ ├── 2_Calendar View_image.png │ │ │ ├── 2_Geo Map View_image.png │ │ │ ├── 3_Calendar View_image.png │ │ │ ├── 3_Geo Map View_image.png │ │ │ ├── 4_Calendar View_image.png │ │ │ ├── 4_Geo Map View_image.png │ │ │ ├── 5_Calendar View_image.png │ │ │ ├── 5_Geo Map View_image.png │ │ │ ├── 6_Calendar View_image.png │ │ │ ├── 6_Geo Map View_image.png │ │ │ ├── 7_Calendar View_image.png │ │ │ ├── 7_Geo Map View_image.png │ │ │ ├── 8_Calendar View_image.png │ │ │ ├── 8_Geo Map View_image.png │ │ │ ├── 9_Calendar View_image.png │ │ │ ├── 9_Geo Map View_image.png │ │ │ ├── Board View.md │ │ │ ├── Board View_image.png │ │ │ ├── Calendar View.md │ │ │ ├── Calendar View_image.png │ │ │ ├── Geo Map View.md │ │ │ ├── Geo Map View_image.jpg │ │ │ ├── Geo Map View_image.png │ │ │ ├── Grid View.md │ │ │ ├── Grid View_image.png │ │ │ ├── List View.md │ │ │ ├── List View_image.png │ │ │ ├── Table View.md │ │ │ └── Table View_image.png │ │ ├── File.md │ │ ├── File_image.png │ │ ├── Mermaid Diagrams.md │ │ ├── Mermaid Diagrams │ │ │ ├── ELK layout.md │ │ │ ├── ELK layout_ELK off.svg │ │ │ └── ELK layout_ELK on.svg │ │ ├── Mermaid Diagrams_image.png │ │ ├── Mind Map.md │ │ ├── Mind Map_image.png │ │ ├── Note Map.md │ │ ├── Note Map_image.png │ │ ├── Relation Map.md │ │ ├── Relation Map_relation-map-.gif │ │ ├── Relation Map_relation-map-.png │ │ ├── Render Note.md │ │ ├── Render Note_image.png │ │ ├── Saved Search.md │ │ ├── Saved Search_saved-search.gif │ │ ├── Text.md │ │ ├── Text │ │ │ ├── 10_Images_image.png │ │ │ ├── 10_Lists_image.png │ │ │ ├── 10_Tables_image.png │ │ │ ├── 11_Tables_image.png │ │ │ ├── 12_Tables_image.png │ │ │ ├── 1_Block quotes & admonitions.png │ │ │ ├── 1_Bookmarks_plus.png │ │ │ ├── 1_Developer-specific formatt.png │ │ │ ├── 1_Footnotes_image.png │ │ │ ├── 1_Formatting toolbar_image.png │ │ │ ├── 1_General formatting_image.png │ │ │ ├── 1_Images_image.png │ │ │ ├── 1_Insert buttons_image.png │ │ │ ├── 1_Insert buttons_plus.png │ │ │ ├── 1_Lists_image.png │ │ │ ├── 1_Math Equations_image.png │ │ │ ├── 1_Other features_image.png │ │ │ ├── 1_Tables_image.png │ │ │ ├── 2_Block quotes & admonitions.png │ │ │ ├── 2_Developer-specific formatt.png │ │ │ ├── 2_Formatting toolbar_image.png │ │ │ ├── 2_General formatting_image.png │ │ │ ├── 2_Images_image.png │ │ │ ├── 2_Insert buttons_image.png │ │ │ ├── 2_Lists_image.png │ │ │ ├── 2_Other features_image.png │ │ │ ├── 2_Tables_image.png │ │ │ ├── 3_Developer-specific formatt.png │ │ │ ├── 3_Formatting toolbar_image.png │ │ │ ├── 3_General formatting_image.png │ │ │ ├── 3_Images_image.png │ │ │ ├── 3_Insert buttons_image.png │ │ │ ├── 3_Lists_image.png │ │ │ ├── 3_Other features_image.png │ │ │ ├── 3_Tables_image.png │ │ │ ├── 4_Developer-specific formatt.png │ │ │ ├── 4_General formatting_image.png │ │ │ ├── 4_Images_image.png │ │ │ ├── 4_Insert buttons_image.png │ │ │ ├── 4_Lists_image.png │ │ │ ├── 4_Other features_image.png │ │ │ ├── 4_Tables_image.png │ │ │ ├── 5_Developer-specific formatt.png │ │ │ ├── 5_Images_image.png │ │ │ ├── 5_Insert buttons_image.png │ │ │ ├── 5_Lists_image.png │ │ │ ├── 5_Other features_image.png │ │ │ ├── 5_Tables_image.png │ │ │ ├── 6_Developer-specific formatt.png │ │ │ ├── 6_Images_image.png │ │ │ ├── 6_Insert buttons_image.png │ │ │ ├── 6_Lists_image.png │ │ │ ├── 6_Other features_image.png │ │ │ ├── 6_Tables_image.png │ │ │ ├── 7_Images_image.png │ │ │ ├── 7_Insert buttons_image.png │ │ │ ├── 7_Lists_image.png │ │ │ ├── 7_Tables_image.png │ │ │ ├── 8_Images_image.png │ │ │ ├── 8_Insert buttons_image.png │ │ │ ├── 8_Lists_image.png │ │ │ ├── 8_Tables_image.png │ │ │ ├── 9_Images_image.png │ │ │ ├── 9_Lists_image.png │ │ │ ├── 9_Tables_image.png │ │ │ ├── Block quotes & admonitions.md │ │ │ ├── Block quotes & admonitions.png │ │ │ ├── Bookmarks.md │ │ │ ├── Bookmarks_plus.png │ │ │ ├── Content language & Right-t.png │ │ │ ├── Content language & Right-to-le.md │ │ │ ├── Cut to subnote.md │ │ │ ├── Cut to subnote_cut-to-subn.gif │ │ │ ├── Developer-specific formatt.png │ │ │ ├── Developer-specific formatting.md │ │ │ ├── Developer-specific formatting │ │ │ │ ├── 1_Code blocks_image.png │ │ │ │ ├── 2_Code blocks_image.png │ │ │ │ ├── Code blocks.md │ │ │ │ └── Code blocks_image.png │ │ │ ├── Footnotes.md │ │ │ ├── Footnotes_image.png │ │ │ ├── Formatting toolbar.md │ │ │ ├── Formatting toolbar_image.png │ │ │ ├── General formatting.md │ │ │ ├── General formatting_image.png │ │ │ ├── Highlights list.md │ │ │ ├── Highlights list_image.png │ │ │ ├── Images.md │ │ │ ├── Images │ │ │ │ ├── 1_Image references_image.png │ │ │ │ ├── Image references.md │ │ │ │ └── Image references_image.png │ │ │ ├── Images_image.png │ │ │ ├── Include Note.md │ │ │ ├── Include Note_image.png │ │ │ ├── Insert buttons.md │ │ │ ├── Insert buttons_image.png │ │ │ ├── Insert buttons_plus.png │ │ │ ├── Keyboard shortcuts.md │ │ │ ├── Links.md │ │ │ ├── Links │ │ │ │ ├── 1_External links_image.png │ │ │ │ ├── 2_External links_image.png │ │ │ │ ├── External links.md │ │ │ │ ├── External links_image.png │ │ │ │ ├── Internal (reference) links.md │ │ │ │ └── Internal (reference) links.png │ │ │ ├── Lists.md │ │ │ ├── Lists_image.png │ │ │ ├── Markdown-like formatting.md │ │ │ ├── Math Equations.md │ │ │ ├── Math Equations_image.png │ │ │ ├── Other features.md │ │ │ ├── Other features_image.png │ │ │ ├── Premium features.md │ │ │ ├── Premium features │ │ │ │ ├── 1_Text Snippets_image.png │ │ │ │ ├── Slash Commands.md │ │ │ │ ├── Slash Commands_image.png │ │ │ │ ├── Text Snippets.md │ │ │ │ └── Text Snippets_image.png │ │ │ ├── Table of contents.md │ │ │ ├── Table of contents_image.png │ │ │ ├── Tables.md │ │ │ └── Tables_image.png │ │ ├── Text_image.png │ │ └── Web View.md │ │ ├── Note Types_image.png │ │ ├── Quick Start.md │ │ ├── Scripting.md │ │ ├── Scripting │ │ ├── Custom Widgets.md │ │ ├── Custom Widgets │ │ │ ├── Widget Basics.md │ │ │ ├── Word count widget.md │ │ │ └── Word count widget_image.png │ │ ├── Events.md │ │ ├── Examples │ │ │ ├── Downloading responses from Goo.md │ │ │ ├── New Task launcher button.md │ │ │ ├── New Task launcher button_i.png │ │ │ ├── Using promoted attributes .png │ │ │ └── Using promoted attributes to c.md │ │ ├── Frontend Basics.md │ │ ├── Script API.md │ │ └── Script API │ │ │ ├── Backend API.dat │ │ │ └── Frontend API │ │ │ └── FNote.dat │ │ ├── Theme development │ │ ├── 1_Custom app-wide CSS_image.png │ │ ├── 2_Custom app-wide CSS_image.png │ │ ├── Creating a custom theme.md │ │ ├── Creating a custom theme_1_.png │ │ ├── Creating a custom theme_2_.png │ │ ├── Creating a custom theme_3_.png │ │ ├── Creating a custom theme_4_.png │ │ ├── Creating a custom theme_5_.png │ │ ├── Creating a custom theme_Cr.png │ │ ├── Custom app-wide CSS.md │ │ ├── Custom app-wide CSS_image.png │ │ ├── Customize the Next theme.md │ │ ├── Customize the Next theme_i.png │ │ └── Reference.md │ │ ├── Troubleshooting.md │ │ └── Troubleshooting │ │ ├── Anonymized Database.md │ │ ├── Anonymized Database_image.png │ │ ├── Error logs.md │ │ ├── Error logs │ │ ├── Backend (server) logs.md │ │ ├── Frontend logs.md │ │ ├── Frontend logs_error-logs-f.png │ │ └── Frontend logs_image.png │ │ ├── Error logs_error-logs-expo.png │ │ ├── Refreshing the application.md │ │ ├── Reporting issues.md │ │ └── Synchronization fails with 504.md ├── app.png ├── index.md ├── javascripts │ ├── extra.js │ └── mathjax.js └── stylesheets │ └── extra.css ├── flake.lock ├── flake.nix ├── mkdocs.yml ├── package.json ├── packages ├── .gitkeep ├── ckeditor5-admonition │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .stylelintrc │ ├── LICENSE.md │ ├── README.md │ ├── ckeditor5-metadata.json │ ├── eslint.config.js │ ├── lang │ │ ├── contexts.json │ │ └── en.po │ ├── package.json │ ├── sample │ │ ├── ckeditor.ts │ │ ├── dll.html │ │ └── index.html │ ├── scripts │ │ └── build-dist.mjs │ ├── src │ │ ├── admonition.ts │ │ ├── admonitionautoformat.ts │ │ ├── admonitioncommand.ts │ │ ├── admonitionediting.ts │ │ ├── admonitionui.ts │ │ ├── augmentation.ts │ │ └── index.ts │ ├── theme │ │ ├── blockquote.css │ │ └── icons │ │ │ └── admonition.svg │ ├── tsconfig.dist.json │ ├── tsconfig.json │ ├── tsconfig.release.json │ ├── tsconfig.test.json │ ├── typings │ │ ├── ckeditor5-inspector.d.ts │ │ └── types.d.ts │ └── vitest.config.ts ├── ckeditor5-footnotes │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .stylelintrc │ ├── LICENSE.md │ ├── README.md │ ├── ckeditor5-metadata.json │ ├── eslint.config.js │ ├── lang │ │ └── contexts.json │ ├── package.json │ ├── sample │ │ ├── ckeditor.ts │ │ ├── dll.html │ │ └── index.html │ ├── scripts │ │ └── build-dist.mjs │ ├── src │ │ ├── augmentation.ts │ │ ├── constants.ts │ │ ├── footnote-editing │ │ │ ├── auto-formatting.ts │ │ │ ├── converters.ts │ │ │ ├── footnote-editing.ts │ │ │ └── schema.ts │ │ ├── footnote-ui.ts │ │ ├── footnotes.ts │ │ ├── index.ts │ │ ├── insert-footnote-command.ts │ │ └── utils.ts │ ├── theme │ │ ├── footnote.css │ │ └── icons │ │ │ └── insert-footnote.svg │ ├── tsconfig.dist.json │ ├── tsconfig.json │ ├── tsconfig.release.json │ ├── tsconfig.test.json │ ├── typings │ │ ├── ckeditor5-inspector.d.ts │ │ └── types.d.ts │ └── vitest.config.ts ├── ckeditor5-keyboard-marker │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .stylelintrc │ ├── LICENSE │ ├── README.md │ ├── assets │ │ └── demo.gif │ ├── ckeditor5-metadata.json │ ├── eslint.config.js │ ├── lang │ │ └── contexts.json │ ├── package.json │ ├── sample │ │ ├── ckeditor.ts │ │ ├── dll.html │ │ └── index.html │ ├── scripts │ │ └── build-dist.mjs │ ├── src │ │ ├── augmentation.ts │ │ ├── index.ts │ │ ├── kbd.ts │ │ ├── kbdediting.ts │ │ └── kbdui.ts │ ├── theme │ │ └── icons │ │ │ └── kbd.svg │ ├── tsconfig.dist.json │ ├── tsconfig.json │ ├── tsconfig.release.json │ ├── tsconfig.test.json │ ├── typings │ │ ├── ckeditor5-inspector.d.ts │ │ └── types.d.ts │ └── vitest.config.ts ├── ckeditor5-math │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .stylelintrc │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── ckeditor5-metadata.json │ ├── eslint.config.js │ ├── lang │ │ └── contexts.json │ ├── package.json │ ├── sample │ │ ├── ckeditor.ts │ │ ├── dll.html │ │ └── index.html │ ├── screenshots │ │ ├── 1.png │ │ ├── 2.png │ │ └── development-environment.png │ ├── scripts │ │ └── build-dist.mjs │ ├── src │ │ ├── augmentation.ts │ │ ├── autoformatmath.ts │ │ ├── automath.ts │ │ ├── index.ts │ │ ├── math.ts │ │ ├── mathcommand.ts │ │ ├── mathediting.ts │ │ ├── mathui.ts │ │ ├── typings-external.ts │ │ ├── ui │ │ │ ├── mainformview.ts │ │ │ └── mathview.ts │ │ └── utils.ts │ ├── tests │ │ ├── automath.ts │ │ ├── index.ts │ │ ├── lazyload.ts │ │ ├── math.ts │ │ └── mathui.ts │ ├── theme │ │ ├── icons │ │ │ └── math.svg │ │ └── mathform.css │ ├── tsconfig.dist.json │ ├── tsconfig.json │ ├── tsconfig.release.json │ ├── tsconfig.test.json │ ├── typings │ │ ├── ckeditor5-inspector.d.ts │ │ └── types.d.ts │ └── vitest.config.ts ├── ckeditor5-mermaid │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .stylelintrc │ ├── LICENSE.md │ ├── README.md │ ├── ckeditor5-metadata.json │ ├── eslint.config.js │ ├── lang │ │ └── contexts.json │ ├── package.json │ ├── sample │ │ ├── ckeditor.ts │ │ ├── dll.html │ │ └── index.html │ ├── scripts │ │ └── build-dist.mjs │ ├── src │ │ ├── augmentation.ts │ │ ├── commands │ │ │ ├── insertMermaidCommand.ts │ │ │ ├── mermaidPreviewCommand.ts │ │ │ ├── mermaidSourceViewCommand.ts │ │ │ └── mermaidSplitViewCommand.ts │ │ ├── index.ts │ │ ├── mermaid.ts │ │ ├── mermaidediting.ts │ │ ├── mermaidtoolbar.ts │ │ ├── mermaidui.ts │ │ └── utils.ts │ ├── tests │ │ ├── commands │ │ │ ├── insertMermaidCommand.ts │ │ │ ├── mermaidPreviewCommand.ts │ │ │ ├── mermaidSourceViewCommand.ts │ │ │ └── mermaidSplitViewCommand.ts │ │ ├── index.ts │ │ ├── manual │ │ │ ├── markdown.html │ │ │ ├── markdown.md │ │ │ ├── markdown.ts │ │ │ ├── mermaid.html │ │ │ ├── mermaid.md │ │ │ └── mermaid.ts │ │ ├── mermaid.ts │ │ ├── mermaidediting.ts │ │ ├── mermaidtoolbar.ts │ │ └── mermaidui.ts │ ├── theme │ │ ├── icons │ │ │ ├── info.svg │ │ │ ├── insert.svg │ │ │ ├── preview-mode.svg │ │ │ ├── source-mode.svg │ │ │ └── split-mode.svg │ │ └── mermaid.css │ ├── tsconfig.dist.json │ ├── tsconfig.json │ ├── tsconfig.release.json │ ├── tsconfig.test.json │ ├── typings │ │ ├── ckeditor5-inspector.d.ts │ │ └── types.d.ts │ └── vitest.config.ts ├── ckeditor5 │ ├── package.json │ ├── src │ │ ├── augmentation.ts │ │ ├── emoji_definitions │ │ │ └── en.json │ │ ├── extra_slash_commands.ts │ │ ├── icons │ │ │ ├── copy.svg │ │ │ ├── date-time.svg │ │ │ ├── fileupload.svg │ │ │ ├── markdown-mark.svg │ │ │ ├── note.svg │ │ │ ├── scissors.svg │ │ │ └── trilium.svg │ │ ├── index.ts │ │ ├── plugins.ts │ │ ├── plugins │ │ │ ├── code_block_language_dropdown.ts │ │ │ ├── code_block_toolbar.ts │ │ │ ├── copy_to_clipboard_button.ts │ │ │ ├── cuttonote.ts │ │ │ ├── file_upload │ │ │ │ ├── fileuploadcommand.ts │ │ │ │ ├── fileuploadediting.ts │ │ │ │ ├── progressbarview.ts │ │ │ │ └── uploadfileplugin.ts │ │ │ ├── includenote.ts │ │ │ ├── indent_block_shortcut.ts │ │ │ ├── insert_date_time.ts │ │ │ ├── internallink.ts │ │ │ ├── italic_as_em.ts │ │ │ ├── markdownimport.ts │ │ │ ├── mention_customization.ts │ │ │ ├── move_block_updown.ts │ │ │ ├── referencelink.ts │ │ │ ├── remove_format_links.ts │ │ │ ├── scroll_on_undo_redo.ts │ │ │ ├── strikethrough_as_del.ts │ │ │ ├── syntax_highlighting │ │ │ │ ├── augmentation.ts │ │ │ │ └── index.ts │ │ │ └── uploadimage.ts │ │ ├── theme │ │ │ ├── ck-content.css │ │ │ ├── code_block_toolbar.css │ │ │ ├── fileupload.css │ │ │ └── theme.css │ │ └── translation_overrides.ts │ ├── tests │ │ └── templates.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── vite.config.ts ├── codemirror │ ├── package.json │ ├── src │ │ ├── augmentation.d.ts │ │ ├── color_themes.ts │ │ ├── extensions │ │ │ ├── custom_tab.ts │ │ │ ├── eslint.spec.ts │ │ │ └── eslint.ts │ │ ├── find_replace.ts │ │ ├── index.ts │ │ ├── languages │ │ │ ├── batch.ts │ │ │ └── gdscript.ts │ │ └── syntax_highlighting.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── vite.config.ts ├── commons │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── attribute_names.ts │ │ │ ├── bulk_actions.ts │ │ │ ├── hidden_subtree.ts │ │ │ ├── i18n.ts │ │ │ ├── keyboard_actions_interface.ts │ │ │ ├── mime_type.ts │ │ │ ├── options_interface.ts │ │ │ ├── rows.ts │ │ │ ├── server_api.ts │ │ │ ├── shared_constants.ts │ │ │ ├── test-utils.spec.ts │ │ │ ├── test-utils.ts │ │ │ └── ws_api.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── vite.config.ts ├── express-partial-content │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── Content.ts │ │ ├── ContentDoesNotExistError.ts │ │ ├── ContentProvider.ts │ │ ├── Logger.ts │ │ ├── Range.ts │ │ ├── RangeParserError.ts │ │ ├── createPartialContentHandler.spec.ts │ │ ├── createPartialContentHandler.ts │ │ ├── index.ts │ │ ├── parseRangeHeader.spec.ts │ │ ├── parseRangeHeader.ts │ │ ├── utils.spec.ts │ │ └── utils.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── vite.config.ts ├── highlightjs │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── languages │ │ │ ├── dylan.ts │ │ │ ├── mirc.ts │ │ │ ├── rpm-specfile.ts │ │ │ ├── terraform.ts │ │ │ └── ttcn3.ts │ │ ├── syntax_highlighting.spec.ts │ │ ├── syntax_highlighting.ts │ │ ├── themes.spec.ts │ │ ├── themes.ts │ │ └── types.d.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── vite.config.ts ├── share-theme │ ├── .eslintrc │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── TODO.md │ ├── package.json │ ├── scripts │ │ ├── .eslintrc │ │ └── build.ts │ ├── src │ │ ├── scripts │ │ │ ├── common │ │ │ │ ├── debounce.ts │ │ │ │ ├── parents.ts │ │ │ │ └── parsehtml.ts │ │ │ ├── index.ts │ │ │ ├── modules │ │ │ │ ├── expanders.ts │ │ │ │ ├── mobile.ts │ │ │ │ ├── search.ts │ │ │ │ ├── theme.ts │ │ │ │ └── toc.ts │ │ │ └── test.ts │ │ ├── styles │ │ │ ├── base.css │ │ │ ├── childlinks.css │ │ │ ├── content-footer.css │ │ │ ├── content.css │ │ │ ├── externallinks.css │ │ │ ├── index.css │ │ │ ├── layout.css │ │ │ ├── mobile.css │ │ │ ├── navbar │ │ │ │ ├── header.css │ │ │ │ ├── index.css │ │ │ │ └── navbar.css │ │ │ ├── popouts │ │ │ │ ├── index.css │ │ │ │ └── search.css │ │ │ └── toc.css │ │ └── templates │ │ │ ├── 404.ejs │ │ │ ├── page.ejs │ │ │ ├── prev_next.ejs │ │ │ ├── toc_item.ejs │ │ │ └── tree_item.ejs │ ├── tsconfig.eslint.json │ └── tsconfig.json └── turndown-plugin-gfm │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ ├── index.js │ └── lib │ │ ├── gfm.js │ │ ├── highlighted-code-block.js │ │ ├── strikethrough.js │ │ ├── tables.js │ │ ├── task-list-items.js │ │ └── turndown-plugin-gfm.js │ ├── test │ ├── index.html │ └── turndown-plugin-gfm-test.js │ ├── tsconfig.json │ └── tsconfig.lib.json ├── patches ├── @ckeditor__ckeditor5-code-block.patch ├── @ckeditor__ckeditor5-mention.patch ├── ckeditor5.patch └── pnpm-PATH-reduction.patch ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── port-discussions.log ├── renovate.json ├── requirements-docs.txt ├── scripts ├── build-utils.ts ├── electron-rebuild.mts ├── electron-start.mts ├── fix-html-links.ts ├── fix-mkdocs-structure.ts ├── generate-openapi.ts ├── migrate-releases.js ├── migrated-issues.txt ├── port-discussions.ts ├── port-issues.ts ├── update-build-info.ts ├── update-nightly-version.ts ├── update-version.ts └── utils.mts ├── tsconfig.base.json ├── tsconfig.json └── vitest.workspace.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/ISSUE_TEMPLATE/task.yml -------------------------------------------------------------------------------- /.github/actions/build-electron/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/actions/build-electron/action.yml -------------------------------------------------------------------------------- /.github/actions/build-server/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/actions/build-server/action.yml -------------------------------------------------------------------------------- /.github/actions/report-size/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/actions/report-size/action.yml -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/workflows/dev.yml -------------------------------------------------------------------------------- /.github/workflows/main-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/workflows/main-docker.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.github/workflows/release-winget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/workflows/release-winget.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/unblock_signing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/workflows/unblock_signing.yml -------------------------------------------------------------------------------- /.github/workflows/website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.github/workflows/website.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.mailmap -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-prefix = '' 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.20.0 -------------------------------------------------------------------------------- /.nxignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.nxignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/i18n-ally-custom-framework.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.vscode/i18n-ally-custom-framework.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT: -------------------------------------------------------------------------------- 1 | Please treat each other with respect and understanding. 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/SECURITY.md -------------------------------------------------------------------------------- /_regroup/bin/create-anonymization-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/bin/create-anonymization-script.ts -------------------------------------------------------------------------------- /_regroup/bin/create-icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/bin/create-icons.sh -------------------------------------------------------------------------------- /_regroup/bin/export-schema.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/bin/export-schema.sh -------------------------------------------------------------------------------- /_regroup/bin/generate-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/bin/generate-cert.sh -------------------------------------------------------------------------------- /_regroup/bin/generate_document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/bin/generate_document.ts -------------------------------------------------------------------------------- /_regroup/bin/push-docker-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/bin/push-docker-image.sh -------------------------------------------------------------------------------- /_regroup/bin/release-flatpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/bin/release-flatpack.sh -------------------------------------------------------------------------------- /_regroup/bin/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/bin/release.sh -------------------------------------------------------------------------------- /_regroup/bin/translation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/bin/translation.sh -------------------------------------------------------------------------------- /_regroup/bin/tray-icons/bookmarks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/bin/tray-icons/bookmarks.svg -------------------------------------------------------------------------------- /_regroup/bin/tray-icons/build-icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/bin/tray-icons/build-icons.sh -------------------------------------------------------------------------------- /_regroup/bin/tray-icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/bin/tray-icons/close.svg -------------------------------------------------------------------------------- /_regroup/bin/tray-icons/new-note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/bin/tray-icons/new-note.svg -------------------------------------------------------------------------------- /_regroup/bin/tray-icons/recents.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/bin/tray-icons/recents.svg -------------------------------------------------------------------------------- /_regroup/bin/tray-icons/today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/bin/tray-icons/today.svg -------------------------------------------------------------------------------- /_regroup/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/entitlements.plist -------------------------------------------------------------------------------- /_regroup/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/eslint.config.js -------------------------------------------------------------------------------- /_regroup/eslint.format.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/eslint.format.config.js -------------------------------------------------------------------------------- /_regroup/integration-tests/auth.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/integration-tests/auth.setup.ts -------------------------------------------------------------------------------- /_regroup/integration-tests/settings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/integration-tests/settings.spec.ts -------------------------------------------------------------------------------- /_regroup/integration-tests/tree.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/integration-tests/tree.spec.ts -------------------------------------------------------------------------------- /_regroup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/package.json -------------------------------------------------------------------------------- /_regroup/spec/etapi/app_info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/spec/etapi/app_info.ts -------------------------------------------------------------------------------- /_regroup/spec/etapi/backup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/spec/etapi/backup.ts -------------------------------------------------------------------------------- /_regroup/spec/etapi/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/spec/etapi/import.ts -------------------------------------------------------------------------------- /_regroup/spec/etapi/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/spec/etapi/notes.ts -------------------------------------------------------------------------------- /_regroup/spec/support/etapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/spec/support/etapi.ts -------------------------------------------------------------------------------- /_regroup/tsconfig.webpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/tsconfig.webpack.json -------------------------------------------------------------------------------- /_regroup/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/_regroup/typedoc.json -------------------------------------------------------------------------------- /apps/client/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/.env -------------------------------------------------------------------------------- /apps/client/.env.production: -------------------------------------------------------------------------------- 1 | VITE_CKEDITOR_ENABLE_INSPECTOR=false 2 | -------------------------------------------------------------------------------- /apps/client/.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/.swcrc -------------------------------------------------------------------------------- /apps/client/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/eslint.config.mjs -------------------------------------------------------------------------------- /apps/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/package.json -------------------------------------------------------------------------------- /apps/client/src/asset_path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/asset_path.ts -------------------------------------------------------------------------------- /apps/client/src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/assets/icon.png -------------------------------------------------------------------------------- /apps/client/src/assets/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/assets/manifest.webmanifest -------------------------------------------------------------------------------- /apps/client/src/assets/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/assets/robots.txt -------------------------------------------------------------------------------- /apps/client/src/components/app_context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/components/app_context.ts -------------------------------------------------------------------------------- /apps/client/src/components/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/components/component.ts -------------------------------------------------------------------------------- /apps/client/src/components/entrypoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/components/entrypoints.ts -------------------------------------------------------------------------------- /apps/client/src/components/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/components/events.ts -------------------------------------------------------------------------------- /apps/client/src/components/note_context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/components/note_context.ts -------------------------------------------------------------------------------- /apps/client/src/components/tab_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/components/tab_manager.ts -------------------------------------------------------------------------------- /apps/client/src/components/touch_bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/components/touch_bar.ts -------------------------------------------------------------------------------- /apps/client/src/components/zoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/components/zoom.ts -------------------------------------------------------------------------------- /apps/client/src/desktop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/desktop.ts -------------------------------------------------------------------------------- /apps/client/src/entities/fattachment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/entities/fattachment.ts -------------------------------------------------------------------------------- /apps/client/src/entities/fattribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/entities/fattribute.ts -------------------------------------------------------------------------------- /apps/client/src/entities/fblob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/entities/fblob.ts -------------------------------------------------------------------------------- /apps/client/src/entities/fbranch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/entities/fbranch.ts -------------------------------------------------------------------------------- /apps/client/src/entities/fnote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/entities/fnote.ts -------------------------------------------------------------------------------- /apps/client/src/fonts/Inter/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/fonts/Inter/OFL.txt -------------------------------------------------------------------------------- /apps/client/src/fonts/Inter/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/fonts/Inter/README.txt -------------------------------------------------------------------------------- /apps/client/src/fonts/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/fonts/Montserrat-Light.ttf -------------------------------------------------------------------------------- /apps/client/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/layouts/desktop_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/layouts/desktop_layout.tsx -------------------------------------------------------------------------------- /apps/client/src/layouts/layout_commons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/layouts/layout_commons.tsx -------------------------------------------------------------------------------- /apps/client/src/layouts/mobile_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/layouts/mobile_layout.tsx -------------------------------------------------------------------------------- /apps/client/src/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/login.ts -------------------------------------------------------------------------------- /apps/client/src/menus/context_menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/menus/context_menu.ts -------------------------------------------------------------------------------- /apps/client/src/menus/image_context_menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/menus/image_context_menu.ts -------------------------------------------------------------------------------- /apps/client/src/menus/link_context_menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/menus/link_context_menu.ts -------------------------------------------------------------------------------- /apps/client/src/menus/tree_context_menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/menus/tree_context_menu.ts -------------------------------------------------------------------------------- /apps/client/src/mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/mobile.ts -------------------------------------------------------------------------------- /apps/client/src/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/runtime.ts -------------------------------------------------------------------------------- /apps/client/src/server_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/server_types.ts -------------------------------------------------------------------------------- /apps/client/src/services/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/attributes.ts -------------------------------------------------------------------------------- /apps/client/src/services/branches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/branches.ts -------------------------------------------------------------------------------- /apps/client/src/services/bulk_action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/bulk_action.ts -------------------------------------------------------------------------------- /apps/client/src/services/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/bundle.ts -------------------------------------------------------------------------------- /apps/client/src/services/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/clipboard.ts -------------------------------------------------------------------------------- /apps/client/src/services/clipboard_ext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/clipboard_ext.ts -------------------------------------------------------------------------------- /apps/client/src/services/date_notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/date_notes.ts -------------------------------------------------------------------------------- /apps/client/src/services/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/debounce.ts -------------------------------------------------------------------------------- /apps/client/src/services/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/dialog.ts -------------------------------------------------------------------------------- /apps/client/src/services/doc_renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/doc_renderer.ts -------------------------------------------------------------------------------- /apps/client/src/services/file_watcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/file_watcher.ts -------------------------------------------------------------------------------- /apps/client/src/services/focus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/focus.ts -------------------------------------------------------------------------------- /apps/client/src/services/froca-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/froca-interface.ts -------------------------------------------------------------------------------- /apps/client/src/services/froca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/froca.ts -------------------------------------------------------------------------------- /apps/client/src/services/froca_updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/froca_updater.ts -------------------------------------------------------------------------------- /apps/client/src/services/glob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/glob.ts -------------------------------------------------------------------------------- /apps/client/src/services/hoisted_note.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/hoisted_note.ts -------------------------------------------------------------------------------- /apps/client/src/services/i18n.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/i18n.spec.ts -------------------------------------------------------------------------------- /apps/client/src/services/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/i18n.ts -------------------------------------------------------------------------------- /apps/client/src/services/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/image.ts -------------------------------------------------------------------------------- /apps/client/src/services/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/import.ts -------------------------------------------------------------------------------- /apps/client/src/services/in_app_help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/in_app_help.ts -------------------------------------------------------------------------------- /apps/client/src/services/link.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/link.spec.ts -------------------------------------------------------------------------------- /apps/client/src/services/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/link.ts -------------------------------------------------------------------------------- /apps/client/src/services/load_results.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/load_results.ts -------------------------------------------------------------------------------- /apps/client/src/services/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/math.ts -------------------------------------------------------------------------------- /apps/client/src/services/mermaid.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/mermaid.spec.ts -------------------------------------------------------------------------------- /apps/client/src/services/mermaid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/mermaid.ts -------------------------------------------------------------------------------- /apps/client/src/services/mime_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/mime_types.ts -------------------------------------------------------------------------------- /apps/client/src/services/note_create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/note_create.ts -------------------------------------------------------------------------------- /apps/client/src/services/note_tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/note_tooltip.ts -------------------------------------------------------------------------------- /apps/client/src/services/note_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/note_types.ts -------------------------------------------------------------------------------- /apps/client/src/services/open.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/open.ts -------------------------------------------------------------------------------- /apps/client/src/services/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/options.ts -------------------------------------------------------------------------------- /apps/client/src/services/render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/render.ts -------------------------------------------------------------------------------- /apps/client/src/services/resizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/resizer.ts -------------------------------------------------------------------------------- /apps/client/src/services/script_context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/script_context.ts -------------------------------------------------------------------------------- /apps/client/src/services/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/search.ts -------------------------------------------------------------------------------- /apps/client/src/services/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/server.ts -------------------------------------------------------------------------------- /apps/client/src/services/shortcuts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/shortcuts.spec.ts -------------------------------------------------------------------------------- /apps/client/src/services/shortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/shortcuts.ts -------------------------------------------------------------------------------- /apps/client/src/services/spaced_update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/spaced_update.ts -------------------------------------------------------------------------------- /apps/client/src/services/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/sync.ts -------------------------------------------------------------------------------- /apps/client/src/services/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/toast.ts -------------------------------------------------------------------------------- /apps/client/src/services/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/tree.ts -------------------------------------------------------------------------------- /apps/client/src/services/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/utils.spec.ts -------------------------------------------------------------------------------- /apps/client/src/services/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/utils.ts -------------------------------------------------------------------------------- /apps/client/src/services/ws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/services/ws.ts -------------------------------------------------------------------------------- /apps/client/src/set_password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/set_password.ts -------------------------------------------------------------------------------- /apps/client/src/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/setup.ts -------------------------------------------------------------------------------- /apps/client/src/share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/share.ts -------------------------------------------------------------------------------- /apps/client/src/share/mermaid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/share/mermaid.ts -------------------------------------------------------------------------------- /apps/client/src/stylesheets/auth.css: -------------------------------------------------------------------------------- 1 | .set-password .form-group { 2 | margin-bottom: 1rem; 3 | } -------------------------------------------------------------------------------- /apps/client/src/stylesheets/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/stylesheets/calendar.css -------------------------------------------------------------------------------- /apps/client/src/stylesheets/llm_chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/stylesheets/llm_chat.css -------------------------------------------------------------------------------- /apps/client/src/stylesheets/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/stylesheets/print.css -------------------------------------------------------------------------------- /apps/client/src/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/stylesheets/style.css -------------------------------------------------------------------------------- /apps/client/src/stylesheets/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/stylesheets/table.css -------------------------------------------------------------------------------- /apps/client/src/stylesheets/theme-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/stylesheets/theme-dark.css -------------------------------------------------------------------------------- /apps/client/src/stylesheets/theme-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/stylesheets/theme-light.css -------------------------------------------------------------------------------- /apps/client/src/stylesheets/theme-next.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/stylesheets/theme-next.css -------------------------------------------------------------------------------- /apps/client/src/stylesheets/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/stylesheets/theme.css -------------------------------------------------------------------------------- /apps/client/src/stylesheets/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/stylesheets/tree.css -------------------------------------------------------------------------------- /apps/client/src/test/easy-froca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/test/easy-froca.ts -------------------------------------------------------------------------------- /apps/client/src/test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/test/setup.ts -------------------------------------------------------------------------------- /apps/client/src/translations/hr/translation.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /apps/client/src/translations/hu/translation.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /apps/client/src/translations/pt/translation.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /apps/client/src/types-assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/types-assets.d.ts -------------------------------------------------------------------------------- /apps/client/src/types-fancytree.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/types-fancytree.d.ts -------------------------------------------------------------------------------- /apps/client/src/types-lib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/types-lib.d.ts -------------------------------------------------------------------------------- /apps/client/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/types.d.ts -------------------------------------------------------------------------------- /apps/client/src/utils/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/utils/formatters.ts -------------------------------------------------------------------------------- /apps/client/src/utils/mutex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/utils/mutex.ts -------------------------------------------------------------------------------- /apps/client/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/vite-env.d.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/FloatingButtons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/FloatingButtons.css -------------------------------------------------------------------------------- /apps/client/src/widgets/FloatingButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/FloatingButtons.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/api_log.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/api_log.css -------------------------------------------------------------------------------- /apps/client/src/widgets/api_log.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/api_log.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/basic_widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/basic_widget.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/bookmark_buttons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/bookmark_buttons.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/buttons/calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/buttons/calendar.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/dialogs/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/dialogs/about.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/dialogs/confirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/dialogs/confirm.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/dialogs/export.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/dialogs/export.css -------------------------------------------------------------------------------- /apps/client/src/widgets/dialogs/export.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/dialogs/export.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/dialogs/help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/dialogs/help.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/dialogs/import.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/dialogs/import.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/dialogs/info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/dialogs/info.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/dialogs/move_to.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/dialogs/move_to.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/dialogs/prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/dialogs/prompt.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/find.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/find.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/find_in_code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/find_in_code.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/find_in_html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/find_in_html.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/find_in_text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/find_in_text.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/highlights_list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/highlights_list.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/icon_list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/icon_list.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/llm_chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/llm_chat/index.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/llm_chat/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/llm_chat/types.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/llm_chat/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/llm_chat/ui.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/llm_chat/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/llm_chat/utils.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/llm_chat_panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/llm_chat_panel.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/note_detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/note_detail.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/note_icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/note_icon.css -------------------------------------------------------------------------------- /apps/client/src/widgets/note_icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/note_icon.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/note_map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/note_map.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/note_title.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/note_title.css -------------------------------------------------------------------------------- /apps/client/src/widgets/note_title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/note_title.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/note_tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/note_tree.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/note_wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/note_wrapper.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/quick_search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/quick_search.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/react/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/react/Alert.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/react/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/react/Badge.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/react/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/react/Button.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/react/CKEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/react/CKEditor.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/react/Column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/react/Column.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/react/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/react/Dropdown.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/react/FormGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/react/FormGroup.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/react/FormList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/react/FormList.css -------------------------------------------------------------------------------- /apps/client/src/widgets/react/FormList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/react/FormList.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/react/FormText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/react/FormText.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/react/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/react/Icon.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/react/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/react/Modal.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/react/NoteLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/react/NoteLink.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/react/NoteList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/react/NoteList.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/react/RawHtml.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/react/RawHtml.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/react/TouchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/react/TouchBar.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/react/hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/react/hooks.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/ribbon/Ribbon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/ribbon/Ribbon.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/ribbon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/ribbon/style.css -------------------------------------------------------------------------------- /apps/client/src/widgets/scroll_padding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/scroll_padding.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/search_result.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/search_result.css -------------------------------------------------------------------------------- /apps/client/src/widgets/search_result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/search_result.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/shared_info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/shared_info.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/spacer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/spacer.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/sql_result.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/sql_result.css -------------------------------------------------------------------------------- /apps/client/src/widgets/sql_result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/sql_result.tsx -------------------------------------------------------------------------------- /apps/client/src/widgets/sync_status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/sync_status.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/tab_row.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/tab_row.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/toc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/toc.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/type_widgets/doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/type_widgets/doc.ts -------------------------------------------------------------------------------- /apps/client/src/widgets/widget_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/src/widgets/widget_utils.ts -------------------------------------------------------------------------------- /apps/client/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/tsconfig.app.json -------------------------------------------------------------------------------- /apps/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/tsconfig.json -------------------------------------------------------------------------------- /apps/client/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/client/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/client/vite.config.mts -------------------------------------------------------------------------------- /apps/db-compare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/db-compare/README.md -------------------------------------------------------------------------------- /apps/db-compare/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/db-compare/eslint.config.mjs -------------------------------------------------------------------------------- /apps/db-compare/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/db-compare/package.json -------------------------------------------------------------------------------- /apps/db-compare/src/compare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/db-compare/src/compare.ts -------------------------------------------------------------------------------- /apps/db-compare/src/sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/db-compare/src/sql.ts -------------------------------------------------------------------------------- /apps/db-compare/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/db-compare/tsconfig.app.json -------------------------------------------------------------------------------- /apps/db-compare/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/db-compare/tsconfig.json -------------------------------------------------------------------------------- /apps/desktop/e2e/example.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/desktop/e2e/example.spec.ts -------------------------------------------------------------------------------- /apps/desktop/e2e/support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/desktop/e2e/support.ts -------------------------------------------------------------------------------- /apps/desktop/electron-forge/desktop.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/desktop/electron-forge/desktop.ejs -------------------------------------------------------------------------------- /apps/desktop/electron-forge/forge.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/desktop/electron-forge/forge.config.ts -------------------------------------------------------------------------------- /apps/desktop/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/desktop/eslint.config.mjs -------------------------------------------------------------------------------- /apps/desktop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/desktop/package.json -------------------------------------------------------------------------------- /apps/desktop/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/desktop/playwright.config.ts -------------------------------------------------------------------------------- /apps/desktop/scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/desktop/scripts/build.ts -------------------------------------------------------------------------------- /apps/desktop/src/app-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/desktop/src/app-info.ts -------------------------------------------------------------------------------- /apps/desktop/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/desktop/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/desktop/src/main.ts -------------------------------------------------------------------------------- /apps/desktop/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/desktop/tsconfig.app.json -------------------------------------------------------------------------------- /apps/desktop/tsconfig.forge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/desktop/tsconfig.forge.json -------------------------------------------------------------------------------- /apps/desktop/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/desktop/tsconfig.json -------------------------------------------------------------------------------- /apps/desktop/vitest.build.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/desktop/vitest.build.config.mts -------------------------------------------------------------------------------- /apps/dump-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/dump-db/README.md -------------------------------------------------------------------------------- /apps/dump-db/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/dump-db/eslint.config.mjs -------------------------------------------------------------------------------- /apps/dump-db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/dump-db/package.json -------------------------------------------------------------------------------- /apps/dump-db/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/dump-db/src/inc/data_key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/dump-db/src/inc/data_key.ts -------------------------------------------------------------------------------- /apps/dump-db/src/inc/decrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/dump-db/src/inc/decrypt.ts -------------------------------------------------------------------------------- /apps/dump-db/src/inc/dump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/dump-db/src/inc/dump.ts -------------------------------------------------------------------------------- /apps/dump-db/src/inc/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/dump-db/src/inc/extension.ts -------------------------------------------------------------------------------- /apps/dump-db/src/inc/sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/dump-db/src/inc/sql.ts -------------------------------------------------------------------------------- /apps/dump-db/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/dump-db/src/main.ts -------------------------------------------------------------------------------- /apps/dump-db/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/dump-db/tsconfig.app.json -------------------------------------------------------------------------------- /apps/dump-db/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/dump-db/tsconfig.json -------------------------------------------------------------------------------- /apps/edit-docs/demo/!!!meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/edit-docs/demo/!!!meta.json -------------------------------------------------------------------------------- /apps/edit-docs/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/edit-docs/demo/index.html -------------------------------------------------------------------------------- /apps/edit-docs/demo/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/edit-docs/demo/navigation.html -------------------------------------------------------------------------------- /apps/edit-docs/demo/root/Journal.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/edit-docs/demo/root/Trilium Demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/edit-docs/demo/root/Trilium Demo.html -------------------------------------------------------------------------------- /apps/edit-docs/demo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/edit-docs/demo/style.css -------------------------------------------------------------------------------- /apps/edit-docs/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/edit-docs/eslint.config.mjs -------------------------------------------------------------------------------- /apps/edit-docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/edit-docs/package.json -------------------------------------------------------------------------------- /apps/edit-docs/src/edit-demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/edit-docs/src/edit-demo.ts -------------------------------------------------------------------------------- /apps/edit-docs/src/edit-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/edit-docs/src/edit-docs.ts -------------------------------------------------------------------------------- /apps/edit-docs/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/edit-docs/src/utils.ts -------------------------------------------------------------------------------- /apps/edit-docs/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/edit-docs/tsconfig.app.json -------------------------------------------------------------------------------- /apps/edit-docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/edit-docs/tsconfig.json -------------------------------------------------------------------------------- /apps/server-e2e/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server-e2e/eslint.config.mjs -------------------------------------------------------------------------------- /apps/server-e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server-e2e/package.json -------------------------------------------------------------------------------- /apps/server-e2e/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server-e2e/playwright.config.ts -------------------------------------------------------------------------------- /apps/server-e2e/src/ai_settings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server-e2e/src/ai_settings.spec.ts -------------------------------------------------------------------------------- /apps/server-e2e/src/help.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server-e2e/src/help.spec.ts -------------------------------------------------------------------------------- /apps/server-e2e/src/i18n.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server-e2e/src/i18n.spec.ts -------------------------------------------------------------------------------- /apps/server-e2e/src/layout/tab_bar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server-e2e/src/layout/tab_bar.spec.ts -------------------------------------------------------------------------------- /apps/server-e2e/src/llm_chat.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server-e2e/src/llm_chat.spec.ts -------------------------------------------------------------------------------- /apps/server-e2e/src/note_types/code.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server-e2e/src/note_types/code.spec.ts -------------------------------------------------------------------------------- /apps/server-e2e/src/note_types/text.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server-e2e/src/note_types/text.spec.ts -------------------------------------------------------------------------------- /apps/server-e2e/src/shared_notes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server-e2e/src/shared_notes.spec.ts -------------------------------------------------------------------------------- /apps/server-e2e/src/support/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server-e2e/src/support/app.ts -------------------------------------------------------------------------------- /apps/server-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/.gitignore -------------------------------------------------------------------------------- /apps/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/Dockerfile -------------------------------------------------------------------------------- /apps/server/Dockerfile.alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/Dockerfile.alpine -------------------------------------------------------------------------------- /apps/server/Dockerfile.alpine.rootless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/Dockerfile.alpine.rootless -------------------------------------------------------------------------------- /apps/server/Dockerfile.rootless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/Dockerfile.rootless -------------------------------------------------------------------------------- /apps/server/docker/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/docker/nginx.conf -------------------------------------------------------------------------------- /apps/server/docker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/docker/package.json -------------------------------------------------------------------------------- /apps/server/docker/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | onlyBuiltDependencies: 2 | - better-sqlite3 3 | -------------------------------------------------------------------------------- /apps/server/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/eslint.config.mjs -------------------------------------------------------------------------------- /apps/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/package.json -------------------------------------------------------------------------------- /apps/server/rootless-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/rootless-entrypoint.sh -------------------------------------------------------------------------------- /apps/server/scripts/build-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/scripts/build-server.sh -------------------------------------------------------------------------------- /apps/server/scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/scripts/build.ts -------------------------------------------------------------------------------- /apps/server/spec/db/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/spec/db/config.ini -------------------------------------------------------------------------------- /apps/server/spec/db/document.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/spec/db/document.db -------------------------------------------------------------------------------- /apps/server/spec/db/document_v214.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/spec/db/document_v214.db -------------------------------------------------------------------------------- /apps/server/spec/etapi/api-metrics.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/spec/etapi/api-metrics.spec.ts -------------------------------------------------------------------------------- /apps/server/spec/etapi/app-info.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/spec/etapi/app-info.spec.ts -------------------------------------------------------------------------------- /apps/server/spec/etapi/basic-auth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/spec/etapi/basic-auth.spec.ts -------------------------------------------------------------------------------- /apps/server/spec/etapi/import-zip.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/spec/etapi/import-zip.spec.ts -------------------------------------------------------------------------------- /apps/server/spec/etapi/no-token.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/spec/etapi/no-token.spec.ts -------------------------------------------------------------------------------- /apps/server/spec/etapi/note-content.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/spec/etapi/note-content.spec.ts -------------------------------------------------------------------------------- /apps/server/spec/etapi/other.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/spec/etapi/other.spec.ts -------------------------------------------------------------------------------- /apps/server/spec/etapi/patch-branch.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/spec/etapi/patch-branch.spec.ts -------------------------------------------------------------------------------- /apps/server/spec/etapi/patch-note.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/spec/etapi/patch-note.spec.ts -------------------------------------------------------------------------------- /apps/server/spec/etapi/search.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/spec/etapi/search.spec.ts -------------------------------------------------------------------------------- /apps/server/spec/etapi/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/spec/etapi/utils.ts -------------------------------------------------------------------------------- /apps/server/spec/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/spec/setup.ts -------------------------------------------------------------------------------- /apps/server/src/anonymize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/anonymize.ts -------------------------------------------------------------------------------- /apps/server/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/app.ts -------------------------------------------------------------------------------- /apps/server/src/assets/api-openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/assets/api-openapi.yaml -------------------------------------------------------------------------------- /apps/server/src/assets/config-sample.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/assets/config-sample.ini -------------------------------------------------------------------------------- /apps/server/src/assets/db/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/assets/db/TODO.txt -------------------------------------------------------------------------------- /apps/server/src/assets/db/demo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/assets/db/demo.zip -------------------------------------------------------------------------------- /apps/server/src/assets/db/image-deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/assets/db/image-deleted.png -------------------------------------------------------------------------------- /apps/server/src/assets/db/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/assets/db/schema.sql -------------------------------------------------------------------------------- /apps/server/src/assets/doc_notes/cn/share.html: -------------------------------------------------------------------------------- 1 |
在这里您可以找到所有分享的笔记。
2 | -------------------------------------------------------------------------------- /apps/server/src/assets/doc_notes/en/User Guide/User Guide/AI/AI Provider Information/Anthropic.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/server/src/assets/doc_notes/en/User Guide/User Guide/AI/AI Provider Information/OpenAI.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/server/src/assets/doc_notes/en/User Guide/User Guide/Advanced Usage/ETAPI (REST API)/API Reference.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/server/src/assets/doc_notes/en/User Guide/User Guide/Advanced Usage/Internal API/API Reference.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/server/src/assets/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Zoom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/server/src/assets/doc_notes/en/User Guide/User Guide/Scripting/Script API/Backend API.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/server/src/assets/doc_notes/en/User Guide/User Guide/Scripting/Script API/Frontend API/FNote.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/server/src/assets/doc_notes/en/share.html: -------------------------------------------------------------------------------- 1 |Here you can find all shared notes.
-------------------------------------------------------------------------------- /apps/server/src/assets/etapi.openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/assets/etapi.openapi.yaml -------------------------------------------------------------------------------- /apps/server/src/assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/assets/icon.ico -------------------------------------------------------------------------------- /apps/server/src/assets/translations/ar/server.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /apps/server/src/assets/translations/el/server.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /apps/server/src/assets/translations/sr/server.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /apps/server/src/assets/translations/tr/server.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /apps/server/src/assets/views/desktop.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/assets/views/desktop.ejs -------------------------------------------------------------------------------- /apps/server/src/assets/views/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/assets/views/login.ejs -------------------------------------------------------------------------------- /apps/server/src/assets/views/mobile.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/assets/views/mobile.ejs -------------------------------------------------------------------------------- /apps/server/src/assets/views/setup.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/assets/views/setup.ejs -------------------------------------------------------------------------------- /apps/server/src/becca/becca-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/becca/becca-interface.ts -------------------------------------------------------------------------------- /apps/server/src/becca/becca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/becca/becca.ts -------------------------------------------------------------------------------- /apps/server/src/becca/becca_loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/becca/becca_loader.ts -------------------------------------------------------------------------------- /apps/server/src/becca/becca_service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/becca/becca_service.ts -------------------------------------------------------------------------------- /apps/server/src/becca/entities/bblob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/becca/entities/bblob.ts -------------------------------------------------------------------------------- /apps/server/src/becca/entities/bbranch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/becca/entities/bbranch.ts -------------------------------------------------------------------------------- /apps/server/src/becca/entities/bnote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/becca/entities/bnote.ts -------------------------------------------------------------------------------- /apps/server/src/becca/entities/boption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/becca/entities/boption.ts -------------------------------------------------------------------------------- /apps/server/src/becca/entities/brevision.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/becca/entities/brevision.ts -------------------------------------------------------------------------------- /apps/server/src/becca/entity_constructor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/becca/entity_constructor.ts -------------------------------------------------------------------------------- /apps/server/src/becca/similarity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/becca/similarity.ts -------------------------------------------------------------------------------- /apps/server/src/docker_healthcheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/docker_healthcheck.ts -------------------------------------------------------------------------------- /apps/server/src/errors/forbidden_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/errors/forbidden_error.ts -------------------------------------------------------------------------------- /apps/server/src/errors/http_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/errors/http_error.ts -------------------------------------------------------------------------------- /apps/server/src/errors/not_found_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/errors/not_found_error.ts -------------------------------------------------------------------------------- /apps/server/src/errors/open_id_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/errors/open_id_error.ts -------------------------------------------------------------------------------- /apps/server/src/errors/validation_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/errors/validation_error.ts -------------------------------------------------------------------------------- /apps/server/src/etapi/app_info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/etapi/app_info.ts -------------------------------------------------------------------------------- /apps/server/src/etapi/attachments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/etapi/attachments.ts -------------------------------------------------------------------------------- /apps/server/src/etapi/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/etapi/attributes.ts -------------------------------------------------------------------------------- /apps/server/src/etapi/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/etapi/auth.ts -------------------------------------------------------------------------------- /apps/server/src/etapi/backup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/etapi/backup.ts -------------------------------------------------------------------------------- /apps/server/src/etapi/branches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/etapi/branches.ts -------------------------------------------------------------------------------- /apps/server/src/etapi/etapi-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/etapi/etapi-interface.ts -------------------------------------------------------------------------------- /apps/server/src/etapi/etapi_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/etapi/etapi_utils.ts -------------------------------------------------------------------------------- /apps/server/src/etapi/mappers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/etapi/mappers.ts -------------------------------------------------------------------------------- /apps/server/src/etapi/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/etapi/metrics.ts -------------------------------------------------------------------------------- /apps/server/src/etapi/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/etapi/notes.ts -------------------------------------------------------------------------------- /apps/server/src/etapi/spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/etapi/spec.ts -------------------------------------------------------------------------------- /apps/server/src/etapi/special_notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/etapi/special_notes.ts -------------------------------------------------------------------------------- /apps/server/src/etapi/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/etapi/validators.ts -------------------------------------------------------------------------------- /apps/server/src/express.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/express.d.ts -------------------------------------------------------------------------------- /apps/server/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/main.ts -------------------------------------------------------------------------------- /apps/server/src/migrations/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/migrations/migrations.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/anthropic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/anthropic.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/app_info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/app_info.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/attachments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/attachments.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/attributes.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/autocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/autocomplete.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/backend_log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/backend_log.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/branches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/branches.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/bulk_action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/bulk_action.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/clipper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/clipper.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/cloning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/cloning.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/database.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/etapi_tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/etapi_tokens.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/export.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/files.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/fonts.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/image.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/image.spec.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/image.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/import.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/keys.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/llm.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/llm.spec.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/llm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/llm.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/login.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/metrics.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/note_map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/note_map.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/notes.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/ollama.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/ollama.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/openai.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/options.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/other.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/other.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/password.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/recent_notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/recent_notes.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/relation-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/relation-map.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/revisions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/revisions.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/script.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/search.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/sender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/sender.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/setup.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/similar_notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/similar_notes.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/special_notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/special_notes.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/sql.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/stats.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/sync.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/system_info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/system_info.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/totp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/totp.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api/tree.ts -------------------------------------------------------------------------------- /apps/server/src/routes/api_docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/api_docs.ts -------------------------------------------------------------------------------- /apps/server/src/routes/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/assets.ts -------------------------------------------------------------------------------- /apps/server/src/routes/csrf_protection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/csrf_protection.ts -------------------------------------------------------------------------------- /apps/server/src/routes/custom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/custom.ts -------------------------------------------------------------------------------- /apps/server/src/routes/electron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/electron.ts -------------------------------------------------------------------------------- /apps/server/src/routes/error_handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/error_handlers.ts -------------------------------------------------------------------------------- /apps/server/src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/index.ts -------------------------------------------------------------------------------- /apps/server/src/routes/login.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/login.spec.ts -------------------------------------------------------------------------------- /apps/server/src/routes/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/login.ts -------------------------------------------------------------------------------- /apps/server/src/routes/route_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/route_api.ts -------------------------------------------------------------------------------- /apps/server/src/routes/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/routes.ts -------------------------------------------------------------------------------- /apps/server/src/routes/session_parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/session_parser.ts -------------------------------------------------------------------------------- /apps/server/src/routes/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/routes/setup.ts -------------------------------------------------------------------------------- /apps/server/src/services/anonymization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/anonymization.ts -------------------------------------------------------------------------------- /apps/server/src/services/api-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/api-interface.ts -------------------------------------------------------------------------------- /apps/server/src/services/app_info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/app_info.ts -------------------------------------------------------------------------------- /apps/server/src/services/app_path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/app_path.ts -------------------------------------------------------------------------------- /apps/server/src/services/asset_path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/asset_path.ts -------------------------------------------------------------------------------- /apps/server/src/services/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/attributes.ts -------------------------------------------------------------------------------- /apps/server/src/services/auth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/auth.spec.ts -------------------------------------------------------------------------------- /apps/server/src/services/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/auth.ts -------------------------------------------------------------------------------- /apps/server/src/services/backup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/backup.ts -------------------------------------------------------------------------------- /apps/server/src/services/blob-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/blob-interface.ts -------------------------------------------------------------------------------- /apps/server/src/services/blob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/blob.ts -------------------------------------------------------------------------------- /apps/server/src/services/branches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/branches.ts -------------------------------------------------------------------------------- /apps/server/src/services/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/build.ts -------------------------------------------------------------------------------- /apps/server/src/services/bulk_actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/bulk_actions.ts -------------------------------------------------------------------------------- /apps/server/src/services/cloning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/cloning.ts -------------------------------------------------------------------------------- /apps/server/src/services/cls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/cls.ts -------------------------------------------------------------------------------- /apps/server/src/services/config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/config.spec.ts -------------------------------------------------------------------------------- /apps/server/src/services/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/config.ts -------------------------------------------------------------------------------- /apps/server/src/services/content_hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/content_hash.ts -------------------------------------------------------------------------------- /apps/server/src/services/data_dir.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/data_dir.spec.ts -------------------------------------------------------------------------------- /apps/server/src/services/data_dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/data_dir.ts -------------------------------------------------------------------------------- /apps/server/src/services/date_notes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/date_notes.spec.ts -------------------------------------------------------------------------------- /apps/server/src/services/date_notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/date_notes.ts -------------------------------------------------------------------------------- /apps/server/src/services/date_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/date_utils.ts -------------------------------------------------------------------------------- /apps/server/src/services/entity_changes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/entity_changes.ts -------------------------------------------------------------------------------- /apps/server/src/services/erase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/erase.ts -------------------------------------------------------------------------------- /apps/server/src/services/etapi_tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/etapi_tokens.ts -------------------------------------------------------------------------------- /apps/server/src/services/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/events.ts -------------------------------------------------------------------------------- /apps/server/src/services/export/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/export/markdown.ts -------------------------------------------------------------------------------- /apps/server/src/services/export/opml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/export/opml.ts -------------------------------------------------------------------------------- /apps/server/src/services/export/single.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/export/single.ts -------------------------------------------------------------------------------- /apps/server/src/services/export/zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/export/zip.ts -------------------------------------------------------------------------------- /apps/server/src/services/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/handlers.ts -------------------------------------------------------------------------------- /apps/server/src/services/hidden_subtree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/hidden_subtree.ts -------------------------------------------------------------------------------- /apps/server/src/services/hoisted_note.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/hoisted_note.ts -------------------------------------------------------------------------------- /apps/server/src/services/host.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/host.ts -------------------------------------------------------------------------------- /apps/server/src/services/html_sanitizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/html_sanitizer.ts -------------------------------------------------------------------------------- /apps/server/src/services/i18n.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/i18n.spec.ts -------------------------------------------------------------------------------- /apps/server/src/services/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/i18n.ts -------------------------------------------------------------------------------- /apps/server/src/services/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/image.ts -------------------------------------------------------------------------------- /apps/server/src/services/import/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/import/common.ts -------------------------------------------------------------------------------- /apps/server/src/services/import/enex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/import/enex.ts -------------------------------------------------------------------------------- /apps/server/src/services/import/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/import/markdown.ts -------------------------------------------------------------------------------- /apps/server/src/services/import/mime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/import/mime.ts -------------------------------------------------------------------------------- /apps/server/src/services/import/opml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/import/opml.ts -------------------------------------------------------------------------------- /apps/server/src/services/import/single.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/import/single.ts -------------------------------------------------------------------------------- /apps/server/src/services/import/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/import/utils.ts -------------------------------------------------------------------------------- /apps/server/src/services/import/zip.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/import/zip.spec.ts -------------------------------------------------------------------------------- /apps/server/src/services/import/zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/import/zip.ts -------------------------------------------------------------------------------- /apps/server/src/services/in_app_help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/in_app_help.ts -------------------------------------------------------------------------------- /apps/server/src/services/instance_id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/instance_id.ts -------------------------------------------------------------------------------- /apps/server/src/services/llm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/llm/README.md -------------------------------------------------------------------------------- /apps/server/src/services/llm/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/llm/chat/index.ts -------------------------------------------------------------------------------- /apps/server/src/services/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/log.ts -------------------------------------------------------------------------------- /apps/server/src/services/meta/note_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/meta/note_meta.ts -------------------------------------------------------------------------------- /apps/server/src/services/migration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/migration.spec.ts -------------------------------------------------------------------------------- /apps/server/src/services/migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/migration.ts -------------------------------------------------------------------------------- /apps/server/src/services/note-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/note-interface.ts -------------------------------------------------------------------------------- /apps/server/src/services/note_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/note_types.ts -------------------------------------------------------------------------------- /apps/server/src/services/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/notes.ts -------------------------------------------------------------------------------- /apps/server/src/services/one_time_timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/one_time_timer.ts -------------------------------------------------------------------------------- /apps/server/src/services/open_id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/open_id.ts -------------------------------------------------------------------------------- /apps/server/src/services/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/options.ts -------------------------------------------------------------------------------- /apps/server/src/services/options_init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/options_init.ts -------------------------------------------------------------------------------- /apps/server/src/services/port.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/port.ts -------------------------------------------------------------------------------- /apps/server/src/services/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/request.ts -------------------------------------------------------------------------------- /apps/server/src/services/resource_dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/resource_dir.ts -------------------------------------------------------------------------------- /apps/server/src/services/revisions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/revisions.ts -------------------------------------------------------------------------------- /apps/server/src/services/scheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/scheduler.ts -------------------------------------------------------------------------------- /apps/server/src/services/script.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/script.spec.ts -------------------------------------------------------------------------------- /apps/server/src/services/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/script.ts -------------------------------------------------------------------------------- /apps/server/src/services/script_context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/script_context.ts -------------------------------------------------------------------------------- /apps/server/src/services/search/note_set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/search/note_set.ts -------------------------------------------------------------------------------- /apps/server/src/services/session_secret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/session_secret.ts -------------------------------------------------------------------------------- /apps/server/src/services/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/setup.ts -------------------------------------------------------------------------------- /apps/server/src/services/spaced_update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/spaced_update.ts -------------------------------------------------------------------------------- /apps/server/src/services/special_notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/special_notes.ts -------------------------------------------------------------------------------- /apps/server/src/services/sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/sql.ts -------------------------------------------------------------------------------- /apps/server/src/services/sql_init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/sql_init.ts -------------------------------------------------------------------------------- /apps/server/src/services/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/sync.ts -------------------------------------------------------------------------------- /apps/server/src/services/sync_mutex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/sync_mutex.ts -------------------------------------------------------------------------------- /apps/server/src/services/sync_options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/sync_options.ts -------------------------------------------------------------------------------- /apps/server/src/services/sync_update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/sync_update.ts -------------------------------------------------------------------------------- /apps/server/src/services/task_context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/task_context.ts -------------------------------------------------------------------------------- /apps/server/src/services/totp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/totp.ts -------------------------------------------------------------------------------- /apps/server/src/services/tray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/tray.ts -------------------------------------------------------------------------------- /apps/server/src/services/tree.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/tree.spec.ts -------------------------------------------------------------------------------- /apps/server/src/services/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/tree.ts -------------------------------------------------------------------------------- /apps/server/src/services/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/utils.spec.ts -------------------------------------------------------------------------------- /apps/server/src/services/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/utils.ts -------------------------------------------------------------------------------- /apps/server/src/services/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/window.ts -------------------------------------------------------------------------------- /apps/server/src/services/ws.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/ws.spec.ts -------------------------------------------------------------------------------- /apps/server/src/services/ws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/services/ws.ts -------------------------------------------------------------------------------- /apps/server/src/share/content_renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/share/content_renderer.ts -------------------------------------------------------------------------------- /apps/server/src/share/routes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/share/routes.spec.ts -------------------------------------------------------------------------------- /apps/server/src/share/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/share/routes.ts -------------------------------------------------------------------------------- /apps/server/src/share/shaca/shaca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/share/shaca/shaca.ts -------------------------------------------------------------------------------- /apps/server/src/share/shaca/shaca_loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/share/shaca/shaca_loader.ts -------------------------------------------------------------------------------- /apps/server/src/share/share_root.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | SHARE_ROOT_NOTE_ID: "_share" 3 | }; 4 | -------------------------------------------------------------------------------- /apps/server/src/share/sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/share/sql.ts -------------------------------------------------------------------------------- /apps/server/src/test/becca_mocking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/test/becca_mocking.ts -------------------------------------------------------------------------------- /apps/server/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/types.d.ts -------------------------------------------------------------------------------- /apps/server/src/www.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/src/www.ts -------------------------------------------------------------------------------- /apps/server/start-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/start-docker.sh -------------------------------------------------------------------------------- /apps/server/test_search_integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/test_search_integration.js -------------------------------------------------------------------------------- /apps/server/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/tsconfig.app.json -------------------------------------------------------------------------------- /apps/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/tsconfig.json -------------------------------------------------------------------------------- /apps/server/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/server/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/vite.config.mts -------------------------------------------------------------------------------- /apps/server/vitest.build.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/server/vitest.build.config.mts -------------------------------------------------------------------------------- /apps/web-clipper/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /apps/web-clipper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/LICENSE -------------------------------------------------------------------------------- /apps/web-clipper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/README.md -------------------------------------------------------------------------------- /apps/web-clipper/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/background.js -------------------------------------------------------------------------------- /apps/web-clipper/bin/release-chrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/bin/release-chrome.sh -------------------------------------------------------------------------------- /apps/web-clipper/bin/release-firefox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/bin/release-firefox.sh -------------------------------------------------------------------------------- /apps/web-clipper/bin/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/bin/release.sh -------------------------------------------------------------------------------- /apps/web-clipper/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/build.js -------------------------------------------------------------------------------- /apps/web-clipper/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/content.js -------------------------------------------------------------------------------- /apps/web-clipper/icons/32-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/icons/32-dev.png -------------------------------------------------------------------------------- /apps/web-clipper/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/icons/32.png -------------------------------------------------------------------------------- /apps/web-clipper/icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/icons/48.png -------------------------------------------------------------------------------- /apps/web-clipper/icons/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/icons/96.png -------------------------------------------------------------------------------- /apps/web-clipper/lib/JSDOMParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/lib/JSDOMParser.js -------------------------------------------------------------------------------- /apps/web-clipper/lib/Readability.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/lib/Readability.js -------------------------------------------------------------------------------- /apps/web-clipper/lib/browser-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/lib/browser-polyfill.js -------------------------------------------------------------------------------- /apps/web-clipper/lib/cash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/lib/cash.min.js -------------------------------------------------------------------------------- /apps/web-clipper/lib/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/lib/toast.js -------------------------------------------------------------------------------- /apps/web-clipper/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/manifest.json -------------------------------------------------------------------------------- /apps/web-clipper/options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/options/options.html -------------------------------------------------------------------------------- /apps/web-clipper/options/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/options/options.js -------------------------------------------------------------------------------- /apps/web-clipper/popup/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/popup/popup.css -------------------------------------------------------------------------------- /apps/web-clipper/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/popup/popup.html -------------------------------------------------------------------------------- /apps/web-clipper/popup/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/popup/popup.js -------------------------------------------------------------------------------- /apps/web-clipper/trilium-web-clipper.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/trilium-web-clipper.iml -------------------------------------------------------------------------------- /apps/web-clipper/trilium_server_facade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/trilium_server_facade.js -------------------------------------------------------------------------------- /apps/web-clipper/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/web-clipper/utils.js -------------------------------------------------------------------------------- /apps/website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/.gitignore -------------------------------------------------------------------------------- /apps/website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/README.md -------------------------------------------------------------------------------- /apps/website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/index.html -------------------------------------------------------------------------------- /apps/website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/package.json -------------------------------------------------------------------------------- /apps/website/public/collection_board.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/public/collection_board.webp -------------------------------------------------------------------------------- /apps/website/public/collection_geomap.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/public/collection_geomap.webp -------------------------------------------------------------------------------- /apps/website/public/collection_table.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/public/collection_table.webp -------------------------------------------------------------------------------- /apps/website/public/type_canvas.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/public/type_canvas.webp -------------------------------------------------------------------------------- /apps/website/public/type_code.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/public/type_code.webp -------------------------------------------------------------------------------- /apps/website/public/type_file.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/public/type_file.webp -------------------------------------------------------------------------------- /apps/website/public/type_mermaid.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/public/type_mermaid.webp -------------------------------------------------------------------------------- /apps/website/public/type_mindmap.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/public/type_mindmap.webp -------------------------------------------------------------------------------- /apps/website/public/type_text.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/public/type_text.webp -------------------------------------------------------------------------------- /apps/website/src/assets/boxicons/bx-map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/assets/boxicons/bx-map.svg -------------------------------------------------------------------------------- /apps/website/src/assets/boxicons/bx-pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/assets/boxicons/bx-pen.svg -------------------------------------------------------------------------------- /apps/website/src/assets/boxicons/bx-tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/assets/boxicons/bx-tag.svg -------------------------------------------------------------------------------- /apps/website/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/assets/favicon.ico -------------------------------------------------------------------------------- /apps/website/src/assets/icon-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/assets/icon-color.svg -------------------------------------------------------------------------------- /apps/website/src/components/Button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/components/Button.css -------------------------------------------------------------------------------- /apps/website/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/components/Button.tsx -------------------------------------------------------------------------------- /apps/website/src/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/components/Card.tsx -------------------------------------------------------------------------------- /apps/website/src/components/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/components/Footer.css -------------------------------------------------------------------------------- /apps/website/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/components/Footer.tsx -------------------------------------------------------------------------------- /apps/website/src/components/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/components/Header.css -------------------------------------------------------------------------------- /apps/website/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/components/Header.tsx -------------------------------------------------------------------------------- /apps/website/src/components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/components/Icon.tsx -------------------------------------------------------------------------------- /apps/website/src/components/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/components/Section.tsx -------------------------------------------------------------------------------- /apps/website/src/download-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/download-helper.ts -------------------------------------------------------------------------------- /apps/website/src/hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/hooks.tsx -------------------------------------------------------------------------------- /apps/website/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/index.tsx -------------------------------------------------------------------------------- /apps/website/src/pages/Home/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/pages/Home/index.css -------------------------------------------------------------------------------- /apps/website/src/pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/pages/Home/index.tsx -------------------------------------------------------------------------------- /apps/website/src/pages/_404.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/pages/_404.css -------------------------------------------------------------------------------- /apps/website/src/pages/_404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/pages/_404.tsx -------------------------------------------------------------------------------- /apps/website/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/src/style.css -------------------------------------------------------------------------------- /apps/website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/tsconfig.json -------------------------------------------------------------------------------- /apps/website/types-assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/types-assets.d.ts -------------------------------------------------------------------------------- /apps/website/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/apps/website/vite.config.ts -------------------------------------------------------------------------------- /docker-compose.rootless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docker-compose.rootless.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/.pages -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | triliumnotes.org -------------------------------------------------------------------------------- /docs/Developer Guide/!!!meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Developer Guide/!!!meta.json -------------------------------------------------------------------------------- /docs/Developer Guide/Developer Guide/Development and architecture/Backlinks.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Developer Guide/Developer Guide/Development and architecture/Branch prefixes.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Developer Guide/Developer Guide/Development and architecture/Deleted notes.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Developer Guide/Developer Guide/Development and architecture/Revisions.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Developer Guide/Developer Guide/Development and architecture/Special notes.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README-ZH_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/README-ZH_CN.md -------------------------------------------------------------------------------- /docs/README-ZH_TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/README-ZH_TW.md -------------------------------------------------------------------------------- /docs/README.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/README.es.md -------------------------------------------------------------------------------- /docs/README.it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/README.it.md -------------------------------------------------------------------------------- /docs/README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/README.ja.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/README.ru.md -------------------------------------------------------------------------------- /docs/RPM-GPG-KEY-trilium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/RPM-GPG-KEY-trilium -------------------------------------------------------------------------------- /docs/Release Notes/!!!meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/!!!meta.json -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.90.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.90.3.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.90.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.90.4.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.90.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.90.8.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.91.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.91.5.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.91.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.91.6.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.92.2-beta.md: -------------------------------------------------------------------------------- 1 | # v0.92.2-beta 2 | ## 🐞 Bugfixes 3 | 4 | * Missing Windows ZIP artifact by @pano9000 -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.92.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.92.4.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.92.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.92.6.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.92.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.92.7.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.93.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.93.0.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.94.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.94.0.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.94.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.94.1.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.95.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.95.0.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.96.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.96.0.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.97.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.97.0.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.97.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.97.1.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.97.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.97.2.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.98.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.98.0.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.98.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.98.1.md -------------------------------------------------------------------------------- /docs/Release Notes/Release Notes/v0.99.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Release Notes/Release Notes/v0.99.0.md -------------------------------------------------------------------------------- /docs/Script API/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/.nojekyll -------------------------------------------------------------------------------- /docs/Script API/assets/hierarchy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/assets/hierarchy.js -------------------------------------------------------------------------------- /docs/Script API/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/assets/highlight.css -------------------------------------------------------------------------------- /docs/Script API/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/assets/icons.js -------------------------------------------------------------------------------- /docs/Script API/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/assets/icons.svg -------------------------------------------------------------------------------- /docs/Script API/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/assets/main.js -------------------------------------------------------------------------------- /docs/Script API/assets/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/assets/navigation.js -------------------------------------------------------------------------------- /docs/Script API/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/assets/search.js -------------------------------------------------------------------------------- /docs/Script API/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/assets/style.css -------------------------------------------------------------------------------- /docs/Script API/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/hierarchy.html -------------------------------------------------------------------------------- /docs/Script API/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/index.html -------------------------------------------------------------------------------- /docs/Script API/media/README-ZH_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/media/README-ZH_CN.md -------------------------------------------------------------------------------- /docs/Script API/media/README.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/media/README.es.md -------------------------------------------------------------------------------- /docs/Script API/media/README.it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/media/README.it.md -------------------------------------------------------------------------------- /docs/Script API/media/README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/media/README.ja.md -------------------------------------------------------------------------------- /docs/Script API/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/media/README.md -------------------------------------------------------------------------------- /docs/Script API/media/README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/media/README.ru.md -------------------------------------------------------------------------------- /docs/Script API/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/Script API/modules.html -------------------------------------------------------------------------------- /docs/User Guide/!!!meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/User Guide/!!!meta.json -------------------------------------------------------------------------------- /docs/User Guide/User Guide.md: -------------------------------------------------------------------------------- 1 | # User Guide 2 | The sub-children of this note are automatically synced. -------------------------------------------------------------------------------- /docs/User Guide/User Guide/AI/AI Provider Information/Anthropic.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/User Guide/User Guide/AI/AI Provider Information/OpenAI.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/User Guide/User Guide/Advanced Usage/ETAPI (REST API)/API Reference.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/User Guide/User Guide/Advanced Usage/Internal API/API Reference.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Zoom.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/User Guide/User Guide/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/User Guide/User Guide/FAQ.md -------------------------------------------------------------------------------- /docs/User Guide/User Guide/Note Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/User Guide/User Guide/Note Types.md -------------------------------------------------------------------------------- /docs/User Guide/User Guide/Quick Start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/User Guide/User Guide/Quick Start.md -------------------------------------------------------------------------------- /docs/User Guide/User Guide/Scripting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/User Guide/User Guide/Scripting.md -------------------------------------------------------------------------------- /docs/User Guide/User Guide/Scripting/Script API/Backend API.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/User Guide/User Guide/Scripting/Script API/Frontend API/FNote.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/app.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/javascripts/extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/javascripts/extra.js -------------------------------------------------------------------------------- /docs/javascripts/mathjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/javascripts/mathjax.js -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/flake.nix -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/package.json -------------------------------------------------------------------------------- /packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/ckeditor5-admonition/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-admonition/.editorconfig -------------------------------------------------------------------------------- /packages/ckeditor5-admonition/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-admonition/.gitignore -------------------------------------------------------------------------------- /packages/ckeditor5-admonition/.stylelintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-ckeditor5" 3 | } 4 | -------------------------------------------------------------------------------- /packages/ckeditor5-admonition/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-admonition/LICENSE.md -------------------------------------------------------------------------------- /packages/ckeditor5-admonition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-admonition/README.md -------------------------------------------------------------------------------- /packages/ckeditor5-admonition/lang/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-admonition/lang/en.po -------------------------------------------------------------------------------- /packages/ckeditor5-admonition/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-admonition/package.json -------------------------------------------------------------------------------- /packages/ckeditor5-admonition/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-admonition/src/index.ts -------------------------------------------------------------------------------- /packages/ckeditor5-admonition/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-admonition/tsconfig.json -------------------------------------------------------------------------------- /packages/ckeditor5-footnotes/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-footnotes/.editorconfig -------------------------------------------------------------------------------- /packages/ckeditor5-footnotes/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-footnotes/.gitattributes -------------------------------------------------------------------------------- /packages/ckeditor5-footnotes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-footnotes/.gitignore -------------------------------------------------------------------------------- /packages/ckeditor5-footnotes/.stylelintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-ckeditor5" 3 | } 4 | -------------------------------------------------------------------------------- /packages/ckeditor5-footnotes/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-footnotes/LICENSE.md -------------------------------------------------------------------------------- /packages/ckeditor5-footnotes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-footnotes/README.md -------------------------------------------------------------------------------- /packages/ckeditor5-footnotes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-footnotes/package.json -------------------------------------------------------------------------------- /packages/ckeditor5-footnotes/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-footnotes/src/index.ts -------------------------------------------------------------------------------- /packages/ckeditor5-footnotes/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-footnotes/src/utils.ts -------------------------------------------------------------------------------- /packages/ckeditor5-footnotes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-footnotes/tsconfig.json -------------------------------------------------------------------------------- /packages/ckeditor5-keyboard-marker/.stylelintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-ckeditor5" 3 | } 4 | -------------------------------------------------------------------------------- /packages/ckeditor5-keyboard-marker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-keyboard-marker/LICENSE -------------------------------------------------------------------------------- /packages/ckeditor5-math/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/.editorconfig -------------------------------------------------------------------------------- /packages/ckeditor5-math/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/.gitattributes -------------------------------------------------------------------------------- /packages/ckeditor5-math/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/.gitignore -------------------------------------------------------------------------------- /packages/ckeditor5-math/.stylelintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-ckeditor5" 3 | } 4 | -------------------------------------------------------------------------------- /packages/ckeditor5-math/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/CHANGELOG.md -------------------------------------------------------------------------------- /packages/ckeditor5-math/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/LICENSE -------------------------------------------------------------------------------- /packages/ckeditor5-math/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/README.md -------------------------------------------------------------------------------- /packages/ckeditor5-math/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/eslint.config.js -------------------------------------------------------------------------------- /packages/ckeditor5-math/lang/contexts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/lang/contexts.json -------------------------------------------------------------------------------- /packages/ckeditor5-math/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/package.json -------------------------------------------------------------------------------- /packages/ckeditor5-math/sample/ckeditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/sample/ckeditor.ts -------------------------------------------------------------------------------- /packages/ckeditor5-math/sample/dll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/sample/dll.html -------------------------------------------------------------------------------- /packages/ckeditor5-math/sample/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/sample/index.html -------------------------------------------------------------------------------- /packages/ckeditor5-math/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/screenshots/1.png -------------------------------------------------------------------------------- /packages/ckeditor5-math/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/screenshots/2.png -------------------------------------------------------------------------------- /packages/ckeditor5-math/src/augmentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/src/augmentation.ts -------------------------------------------------------------------------------- /packages/ckeditor5-math/src/automath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/src/automath.ts -------------------------------------------------------------------------------- /packages/ckeditor5-math/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/src/index.ts -------------------------------------------------------------------------------- /packages/ckeditor5-math/src/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/src/math.ts -------------------------------------------------------------------------------- /packages/ckeditor5-math/src/mathcommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/src/mathcommand.ts -------------------------------------------------------------------------------- /packages/ckeditor5-math/src/mathediting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/src/mathediting.ts -------------------------------------------------------------------------------- /packages/ckeditor5-math/src/mathui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/src/mathui.ts -------------------------------------------------------------------------------- /packages/ckeditor5-math/src/ui/mathview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/src/ui/mathview.ts -------------------------------------------------------------------------------- /packages/ckeditor5-math/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/src/utils.ts -------------------------------------------------------------------------------- /packages/ckeditor5-math/tests/automath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/tests/automath.ts -------------------------------------------------------------------------------- /packages/ckeditor5-math/tests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/tests/index.ts -------------------------------------------------------------------------------- /packages/ckeditor5-math/tests/lazyload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/tests/lazyload.ts -------------------------------------------------------------------------------- /packages/ckeditor5-math/tests/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/tests/math.ts -------------------------------------------------------------------------------- /packages/ckeditor5-math/tests/mathui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/tests/mathui.ts -------------------------------------------------------------------------------- /packages/ckeditor5-math/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/tsconfig.json -------------------------------------------------------------------------------- /packages/ckeditor5-math/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-math/vitest.config.ts -------------------------------------------------------------------------------- /packages/ckeditor5-mermaid/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-mermaid/.editorconfig -------------------------------------------------------------------------------- /packages/ckeditor5-mermaid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-mermaid/.gitignore -------------------------------------------------------------------------------- /packages/ckeditor5-mermaid/.stylelintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-ckeditor5" 3 | } 4 | -------------------------------------------------------------------------------- /packages/ckeditor5-mermaid/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-mermaid/LICENSE.md -------------------------------------------------------------------------------- /packages/ckeditor5-mermaid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-mermaid/README.md -------------------------------------------------------------------------------- /packages/ckeditor5-mermaid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-mermaid/package.json -------------------------------------------------------------------------------- /packages/ckeditor5-mermaid/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-mermaid/src/index.ts -------------------------------------------------------------------------------- /packages/ckeditor5-mermaid/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-mermaid/src/utils.ts -------------------------------------------------------------------------------- /packages/ckeditor5-mermaid/tests/manual/markdown.md: -------------------------------------------------------------------------------- 1 | ## Mermaid widget -------------------------------------------------------------------------------- /packages/ckeditor5-mermaid/tests/manual/mermaid.md: -------------------------------------------------------------------------------- 1 | ## Mermaid widget -------------------------------------------------------------------------------- /packages/ckeditor5-mermaid/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5-mermaid/tsconfig.json -------------------------------------------------------------------------------- /packages/ckeditor5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5/package.json -------------------------------------------------------------------------------- /packages/ckeditor5/src/augmentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5/src/augmentation.ts -------------------------------------------------------------------------------- /packages/ckeditor5/src/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5/src/icons/copy.svg -------------------------------------------------------------------------------- /packages/ckeditor5/src/icons/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5/src/icons/note.svg -------------------------------------------------------------------------------- /packages/ckeditor5/src/icons/trilium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5/src/icons/trilium.svg -------------------------------------------------------------------------------- /packages/ckeditor5/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5/src/index.ts -------------------------------------------------------------------------------- /packages/ckeditor5/src/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5/src/plugins.ts -------------------------------------------------------------------------------- /packages/ckeditor5/src/theme/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5/src/theme/theme.css -------------------------------------------------------------------------------- /packages/ckeditor5/tests/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5/tests/templates.ts -------------------------------------------------------------------------------- /packages/ckeditor5/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5/tsconfig.json -------------------------------------------------------------------------------- /packages/ckeditor5/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5/tsconfig.lib.json -------------------------------------------------------------------------------- /packages/ckeditor5/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/ckeditor5/vite.config.ts -------------------------------------------------------------------------------- /packages/codemirror/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/codemirror/package.json -------------------------------------------------------------------------------- /packages/codemirror/src/color_themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/codemirror/src/color_themes.ts -------------------------------------------------------------------------------- /packages/codemirror/src/find_replace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/codemirror/src/find_replace.ts -------------------------------------------------------------------------------- /packages/codemirror/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/codemirror/src/index.ts -------------------------------------------------------------------------------- /packages/codemirror/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/codemirror/tsconfig.json -------------------------------------------------------------------------------- /packages/codemirror/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/codemirror/tsconfig.lib.json -------------------------------------------------------------------------------- /packages/codemirror/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/codemirror/tsconfig.spec.json -------------------------------------------------------------------------------- /packages/codemirror/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/codemirror/vite.config.ts -------------------------------------------------------------------------------- /packages/commons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/commons/package.json -------------------------------------------------------------------------------- /packages/commons/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/commons/src/index.ts -------------------------------------------------------------------------------- /packages/commons/src/lib/bulk_actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/commons/src/lib/bulk_actions.ts -------------------------------------------------------------------------------- /packages/commons/src/lib/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/commons/src/lib/i18n.ts -------------------------------------------------------------------------------- /packages/commons/src/lib/mime_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/commons/src/lib/mime_type.ts -------------------------------------------------------------------------------- /packages/commons/src/lib/rows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/commons/src/lib/rows.ts -------------------------------------------------------------------------------- /packages/commons/src/lib/server_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/commons/src/lib/server_api.ts -------------------------------------------------------------------------------- /packages/commons/src/lib/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/commons/src/lib/test-utils.ts -------------------------------------------------------------------------------- /packages/commons/src/lib/ws_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/commons/src/lib/ws_api.ts -------------------------------------------------------------------------------- /packages/commons/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/commons/tsconfig.json -------------------------------------------------------------------------------- /packages/commons/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/commons/tsconfig.lib.json -------------------------------------------------------------------------------- /packages/commons/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/commons/tsconfig.spec.json -------------------------------------------------------------------------------- /packages/commons/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/commons/vite.config.ts -------------------------------------------------------------------------------- /packages/express-partial-content/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/express-partial-content/LICENSE -------------------------------------------------------------------------------- /packages/express-partial-content/src/Logger.ts: -------------------------------------------------------------------------------- 1 | export interface Logger { 2 | debug(message: string, extra?: any): void; 3 | } 4 | -------------------------------------------------------------------------------- /packages/highlightjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/highlightjs/package.json -------------------------------------------------------------------------------- /packages/highlightjs/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/highlightjs/src/index.ts -------------------------------------------------------------------------------- /packages/highlightjs/src/themes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/highlightjs/src/themes.spec.ts -------------------------------------------------------------------------------- /packages/highlightjs/src/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/highlightjs/src/themes.ts -------------------------------------------------------------------------------- /packages/highlightjs/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/highlightjs/src/types.d.ts -------------------------------------------------------------------------------- /packages/highlightjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/highlightjs/tsconfig.json -------------------------------------------------------------------------------- /packages/highlightjs/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/highlightjs/tsconfig.lib.json -------------------------------------------------------------------------------- /packages/highlightjs/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/highlightjs/tsconfig.spec.json -------------------------------------------------------------------------------- /packages/highlightjs/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/highlightjs/vite.config.ts -------------------------------------------------------------------------------- /packages/share-theme/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/share-theme/.eslintrc -------------------------------------------------------------------------------- /packages/share-theme/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | legacy/ 3 | dist/ 4 | .env -------------------------------------------------------------------------------- /packages/share-theme/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/share-theme/LICENSE -------------------------------------------------------------------------------- /packages/share-theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/share-theme/README.md -------------------------------------------------------------------------------- /packages/share-theme/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/share-theme/TODO.md -------------------------------------------------------------------------------- /packages/share-theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/share-theme/package.json -------------------------------------------------------------------------------- /packages/share-theme/scripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/share-theme/scripts/.eslintrc -------------------------------------------------------------------------------- /packages/share-theme/scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/share-theme/scripts/build.ts -------------------------------------------------------------------------------- /packages/share-theme/src/scripts/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/share-theme/src/scripts/test.ts -------------------------------------------------------------------------------- /packages/share-theme/src/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/share-theme/src/styles/base.css -------------------------------------------------------------------------------- /packages/share-theme/src/styles/popouts/index.css: -------------------------------------------------------------------------------- 1 | @import "./search.css"; -------------------------------------------------------------------------------- /packages/share-theme/src/styles/toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/share-theme/src/styles/toc.css -------------------------------------------------------------------------------- /packages/share-theme/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/share-theme/tsconfig.json -------------------------------------------------------------------------------- /packages/turndown-plugin-gfm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/turndown-plugin-gfm/LICENSE -------------------------------------------------------------------------------- /packages/turndown-plugin-gfm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/packages/turndown-plugin-gfm/README.md -------------------------------------------------------------------------------- /packages/turndown-plugin-gfm/src/index.js: -------------------------------------------------------------------------------- 1 | export * from './lib/gfm.js'; 2 | -------------------------------------------------------------------------------- /patches/ckeditor5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/patches/ckeditor5.patch -------------------------------------------------------------------------------- /patches/pnpm-PATH-reduction.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/patches/pnpm-PATH-reduction.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /port-discussions.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/port-discussions.log -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/renovate.json -------------------------------------------------------------------------------- /requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/requirements-docs.txt -------------------------------------------------------------------------------- /scripts/build-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/scripts/build-utils.ts -------------------------------------------------------------------------------- /scripts/electron-rebuild.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/scripts/electron-rebuild.mts -------------------------------------------------------------------------------- /scripts/electron-start.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/scripts/electron-start.mts -------------------------------------------------------------------------------- /scripts/fix-html-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/scripts/fix-html-links.ts -------------------------------------------------------------------------------- /scripts/fix-mkdocs-structure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/scripts/fix-mkdocs-structure.ts -------------------------------------------------------------------------------- /scripts/generate-openapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/scripts/generate-openapi.ts -------------------------------------------------------------------------------- /scripts/migrate-releases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/scripts/migrate-releases.js -------------------------------------------------------------------------------- /scripts/migrated-issues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/scripts/migrated-issues.txt -------------------------------------------------------------------------------- /scripts/port-discussions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/scripts/port-discussions.ts -------------------------------------------------------------------------------- /scripts/port-issues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/scripts/port-issues.ts -------------------------------------------------------------------------------- /scripts/update-build-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/scripts/update-build-info.ts -------------------------------------------------------------------------------- /scripts/update-nightly-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/scripts/update-nightly-version.ts -------------------------------------------------------------------------------- /scripts/update-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/scripts/update-version.ts -------------------------------------------------------------------------------- /scripts/utils.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/scripts/utils.mts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinan888/Trilium/HEAD/vitest.workspace.ts --------------------------------------------------------------------------------