A custom resource provider allows any file imported into Trilium (images,
+ fonts, stylesheets) to be publicly accessible via a URL.
+
A potential use case for this is to add embed a custom font alongside
+ a theme.
+
Steps for creating a custom resource provider
+
+
Import a file such as an image or a font into Trilium by drag & drop.
+
Select the file and go to the Owned Attributes section.
+
Add the label #customResourceProvider=hello.
+
To test if it is working, use a browser to navigate to <protocol>://<host>/custom/hello (where <protocol> is
+ either http or https based on your setup, and <host> is
+ the host or IP to your Trilium server instance). If you are running the
+ TriliumNext application without a server, use http://localhost:37840 as
+ the base URL.
+
If everything went well, at the previous step the browser should have
+ downloaded the file uploaded in the first step.
+
+
Instead of hello, the name can be:
+
+
A path, such as fonts/Roboto.ttf, which would be accessible
+ via <host>/custom/fonts/Roboto.ttf.
+
As a more advanced use case, a regular expression to match multiple routes,
+ such as hello/.* which will be accessible via /custom/hello/1, /custom/hello/2, /custom/hello/world,
+ etc.
+
+
Using it in a theme
+
For example, if you have a custom font to be imported by the theme, first
+ upload a font file into Trilium and assign it the #customResourceProvider=fonts/myfont.ttf attribute.
+
+
+
\ No newline at end of file
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/REST API/ETAPI/API Reference.dat b/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/REST API/ETAPI/API Reference.dat
new file mode 100644
index 000000000..e69de29bb
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/REST API/Internal API/API Reference.dat b/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/REST API/Internal API/API Reference.dat
new file mode 100644
index 000000000..e69de29bb
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/2_Creating a custom theme_im.png b/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/1_Creating a custom theme_im.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/2_Creating a custom theme_im.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/1_Creating a custom theme_im.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/Theme base (legacy vs. nex.png b/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/1_Customize the Next theme_i.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/Theme base (legacy vs. nex.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/1_Customize the Next theme_i.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/4_Creating a custom theme_im.png b/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/2_Creating a custom theme_im.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/4_Creating a custom theme_im.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/2_Creating a custom theme_im.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/1_Creating a custom theme_im.png b/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/3_Creating a custom theme_im.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/1_Creating a custom theme_im.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/3_Creating a custom theme_im.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/5_Creating a custom theme_im.png b/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/4_Creating a custom theme_im.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/5_Creating a custom theme_im.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/4_Creating a custom theme_im.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/Creating a custom theme_im.png b/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/5_Creating a custom theme_im.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/Creating a custom theme_im.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/5_Creating a custom theme_im.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/Creating a custom theme.html b/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/Creating a custom theme.html
similarity index 87%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/Creating a custom theme.html
rename to src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/Creating a custom theme.html
index e4d1eeda4..d2dc5fea7 100644
--- a/src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/Creating a custom theme.html
+++ b/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/Creating a custom theme.html
@@ -19,7 +19,7 @@
keep them into one place.
As such, the first step is to create a new note to gather all the themes.
-
+
Step 2. Create the theme
@@ -32,7 +32,7 @@
-
@@ -42,7 +42,7 @@
-
@@ -51,7 +51,7 @@
-
@@ -72,15 +72,15 @@
Refresh the application (Ctrl+Shift+R is a good way to do so) and go to
settings. You should see the newly created theme:
-
+
Afterwards the application will refresh itself with the new theme:
-
+
Do note that the theme will be based off of the legacy theme. To override
that and base the theme on the new TriliumNext theme, see: Theme base (legacy vs. next)
+ href="Customize%20the%20Next%20theme.html">Theme base (legacy vs. next)
Step 5. Making changes
Simply go back to the note and change according to needs. To apply the
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/3_Creating a custom theme_im.png b/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/Creating a custom theme_im.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/3_Creating a custom theme_im.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/Creating a custom theme_im.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/Theme base (legacy vs. next).html b/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/Customize the Next theme.html
similarity index 78%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/Theme base (legacy vs. next).html
rename to src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/Customize the Next theme.html
index d392deed4..cd0a47f0b 100644
--- a/src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/Theme base (legacy vs. next).html
+++ b/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/Customize the Next theme.html
@@ -5,20 +5,20 @@
-
Theme base (legacy vs. next)
+ Customize the Next theme
-
Theme base (legacy vs. next)
+
Customize the Next theme
By default, any custom theme will be based on the legacy light theme.
- To change the TriliumNext theme instead, add the #appThemeBase=next attribute
+ To use the TriliumNext theme instead, add the #appThemeBase=next attribute
onto the existing theme. The appTheme attribute must also be
present.
-
+
When appThemeBase is set to next it will use the
“TriliumNext (auto)” theme. Any other value is ignored and will use the
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/1_Theme base (legacy vs. nex.png b/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/Customize the Next theme_i.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/1_Theme base (legacy vs. nex.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/Customize the Next theme_i.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/Reference.html b/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/Reference.html
similarity index 93%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/Reference.html
rename to src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/Reference.html
index 13af6494e..e858513c1 100644
--- a/src/public/app/doc_notes/en/User Guide/User Guide/Power users/Theme development/Reference.html
+++ b/src/public/app/doc_notes/en/User Guide/User Guide/Advanced usage/Theme development/Reference.html
@@ -122,6 +122,11 @@ body.electron:not(.native-titlebar) {
height: 3px;
background-color: var(--workspace-tab-background-color);
}
+
Custom fonts
+
Currently the only way to include a custom font is to use Custom resource providers.
+ Basically import a font into Trilium and assign it #customResourceProvider=fonts/myfont.ttf and
+ then import the font in CSS via /custom/fonts/myfont.ttf.
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Working with notes/2_Exporting as PDF_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Features/1_Export as PDF_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Working with notes/2_Exporting as PDF_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Features/1_Export as PDF_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Features/1_Zen mode_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Features/1_Zen mode_image.png
new file mode 100644
index 000000000..c1a3e8124
Binary files /dev/null and b/src/public/app/doc_notes/en/User Guide/User Guide/Features/1_Zen mode_image.png differ
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Working with notes/Exporting as PDF_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Features/2_Export as PDF_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Working with notes/Exporting as PDF_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Features/2_Export as PDF_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Features/2_Zen mode_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Features/2_Zen mode_image.png
new file mode 100644
index 000000000..0c9f26de0
Binary files /dev/null and b/src/public/app/doc_notes/en/User Guide/User Guide/Features/2_Zen mode_image.png differ
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Features/3_Zen mode_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Features/3_Zen mode_image.png
new file mode 100644
index 000000000..530d76afb
Binary files /dev/null and b/src/public/app/doc_notes/en/User Guide/User Guide/Features/3_Zen mode_image.png differ
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Features/4_Zen mode_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Features/4_Zen mode_image.png
new file mode 100644
index 000000000..d2698b715
Binary files /dev/null and b/src/public/app/doc_notes/en/User Guide/User Guide/Features/4_Zen mode_image.png differ
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Features/5_Zen mode_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Features/5_Zen mode_image.png
new file mode 100644
index 000000000..9f693475f
Binary files /dev/null and b/src/public/app/doc_notes/en/User Guide/User Guide/Features/5_Zen mode_image.png differ
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Features/6_Zen mode_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Features/6_Zen mode_image.png
new file mode 100644
index 000000000..c2543960a
Binary files /dev/null and b/src/public/app/doc_notes/en/User Guide/User Guide/Features/6_Zen mode_image.png differ
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Features/7_Zen mode_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Features/7_Zen mode_image.png
new file mode 100644
index 000000000..d23b671da
Binary files /dev/null and b/src/public/app/doc_notes/en/User Guide/User Guide/Features/7_Zen mode_image.png differ
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Working with notes/Exporting as PDF.html b/src/public/app/doc_notes/en/User Guide/User Guide/Features/Export as PDF.html
similarity index 78%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Working with notes/Exporting as PDF.html
rename to src/public/app/doc_notes/en/User Guide/User Guide/Features/Export as PDF.html
index 045180d5f..1c4337360 100644
--- a/src/public/app/doc_notes/en/User Guide/User Guide/Working with notes/Exporting as PDF.html
+++ b/src/public/app/doc_notes/en/User Guide/User Guide/Features/Export as PDF.html
@@ -5,32 +5,35 @@
- Exporting as PDF
+ Export as PDF
-
Exporting as PDF
+
Export as PDF
-
-
+
+
+ Screenshot of the note contextual menu indicating the “Export as PDF”
+ option.
On the desktop application of Trilium it is possible to export a note
as PDF. On the server or PWA (mobile), the option is not available due
to technical constraints and it will be hidden.
To print a note, select the
- button to the right of the note and select Export as PDF.
Afterwards you will be prompted to select where to save the PDF file.
- Upon confirmation, the resulting PDF will be opened automatically.
+ Upon confirmation, the resulting PDF will be opened automatically using
+ the default/system application configured for PDFs.
Should you encounter any visual issues in the resulting PDF file (e.g.
a table does not fit properly, there is cut off text, etc.) feel free to
report the issue. In this case, it's best to offer a sample note (click
on the
- button, select Export note → This note and all of its descendants → HTML
+ button, select Export note → This note and all of its descendants → HTML
in ZIP archive). Make sure not to accidentally leak any personal information.
Landscape mode
When exporting to PDF, there are no customizable settings such as page
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Working with notes/1_Exporting as PDF_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Features/Export as PDF_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Working with notes/1_Exporting as PDF_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Features/Export as PDF_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Features/Zen mode.html b/src/public/app/doc_notes/en/User Guide/User Guide/Features/Zen mode.html
new file mode 100644
index 000000000..9792a7d32
--- /dev/null
+++ b/src/public/app/doc_notes/en/User Guide/User Guide/Features/Zen mode.html
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+ Zen mode
+
+
+
+
+
Zen mode
+
+
+
+
+ Screenshot of Zen Mode activated on a Windows 11 system with native title
+ bar off and background effects on.
+
+
When Zen Mode is activated (pictured on the side), most of the user interface
+ of Trilium is hidden away in order to be able to focus on the content,
+ whether it's for reading or writing.
+
+
+ Screenshot of the Zen Mode option in the global menu.
+
+
Activating & deactivating
+
The Zen Mode can be activated by accessing the global menu and selecting
+ the “Zen Mode” option:
+
Aside from the global menu, it's also possible to activate this mode by
+ using a keyboard shortcut which is Alt+Z by default. Look for toggleZenMode in
+ the shortcut configuration.
+
Once Zen Mode is activated, all the UI elements of the application will
+ be hidden away, including the global menu. In that case, the Zen Mode can
+ be deactivated either by pressing the
+ icon in the top-right corner of the window or by pressing the keyboard
+ combination again.
+
Do note that, by design, activating or deactivating the Zen Mode applies
+ only to the current window. Restarting the application will also disable
+ the Zen Mode.
+
Moving the window around
+
If “Native title bar” is activated, then the operating system's default
+ title bar can be used to drag the window around. If deactivated, the window
+ can still be moved by dragging the mouse across the top part of the window
+ where the note titles are.
+
+
+ Screenshot of two notes side-by-side while Zen Mode is active, on Windows
+ 11 with background effects off.
+
+
Split windows and tabs
+
Tabs are completely hidden, however it's still possible to use keyboard
+ shortcuts such as firstTab (Ctrl+1 by default), secondTab (Ctrl+2
+ by default). There are also some newer shortcuts such as activateNextTab (Ctrl+Tab)
+ or activatePreviousTab (Ctrl+Shift+Tab) that allow easy navigation,
+ however make sure that they are configured properly in the settings.
+
For the split view of notes, there are no keyboard shortcuts at the time
+ of writing, but it's still possible to have them in Zen Mode by creating
+ the split while the Zen Mode is off and then reactivating it afterwards.
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Features/Zen mode_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Features/Zen mode_image.png
new file mode 100644
index 000000000..675a068aa
Binary files /dev/null and b/src/public/app/doc_notes/en/User Guide/User Guide/Features/Zen mode_image.png differ
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Installation.html b/src/public/app/doc_notes/en/User Guide/User Guide/Installation.html
new file mode 100644
index 000000000..058f84feb
--- /dev/null
+++ b/src/public/app/doc_notes/en/User Guide/User Guide/Installation.html
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+ Installation
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Installation/1_On Fedora Linux_Screenshot.png b/src/public/app/doc_notes/en/User Guide/User Guide/Installation/1_On Fedora Linux_Screenshot.png
new file mode 100644
index 000000000..d519f9b75
Binary files /dev/null and b/src/public/app/doc_notes/en/User Guide/User Guide/Installation/1_On Fedora Linux_Screenshot.png differ
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Installation/1_On Fedora Linux_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Installation/1_On Fedora Linux_image.png
new file mode 100644
index 000000000..f3fcbfcb5
Binary files /dev/null and b/src/public/app/doc_notes/en/User Guide/User Guide/Installation/1_On Fedora Linux_image.png differ
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Installation/2_On Fedora Linux_Screenshot.png b/src/public/app/doc_notes/en/User Guide/User Guide/Installation/2_On Fedora Linux_Screenshot.png
new file mode 100644
index 000000000..d7370a422
Binary files /dev/null and b/src/public/app/doc_notes/en/User Guide/User Guide/Installation/2_On Fedora Linux_Screenshot.png differ
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Installation/2_On Fedora Linux_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Installation/2_On Fedora Linux_image.png
new file mode 100644
index 000000000..b69b71d3c
Binary files /dev/null and b/src/public/app/doc_notes/en/User Guide/User Guide/Installation/2_On Fedora Linux_image.png differ
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Installation/3_On Fedora Linux_Screenshot.png b/src/public/app/doc_notes/en/User Guide/User Guide/Installation/3_On Fedora Linux_Screenshot.png
new file mode 100644
index 000000000..6c3589ca4
Binary files /dev/null and b/src/public/app/doc_notes/en/User Guide/User Guide/Installation/3_On Fedora Linux_Screenshot.png differ
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Installation/On Fedora Linux.html b/src/public/app/doc_notes/en/User Guide/User Guide/Installation/On Fedora Linux.html
new file mode 100644
index 000000000..88ad36272
--- /dev/null
+++ b/src/public/app/doc_notes/en/User Guide/User Guide/Installation/On Fedora Linux.html
@@ -0,0 +1,82 @@
+
+
+
+
+
+
+
+ On Fedora Linux
+
+
+
+
+
On Fedora Linux
+
+
+
First, download a release from GitHub.
+
+
+
+
+
+
+
+
+
+
1
+
+
+
+
+
+
In your file explorer, look for the .rpm file of TriliumNext.
+
+
+
2
+
+
+
+
+
+
Right click the file and select Open With Software Install.
+
+
+
3
+
+
+
+
+
+
+
GNOME Software will appear. Press the
+ .
+
You will be asked to confirm the action by entering your password.
+
After confirmation the software will start installing.
+
Once it's done the “Install” button will turn into
+ .
+
+
+
+
4
+
+
+
+
+
+
After installation, the application will be available in the GNOME overview
+ section.
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Installation/On Fedora Linux_Screenshot.png b/src/public/app/doc_notes/en/User Guide/User Guide/Installation/On Fedora Linux_Screenshot.png
new file mode 100644
index 000000000..fb0ce66ef
Binary files /dev/null and b/src/public/app/doc_notes/en/User Guide/User Guide/Installation/On Fedora Linux_Screenshot.png differ
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Installation/On Fedora Linux_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Installation/On Fedora Linux_image.png
new file mode 100644
index 000000000..5791f83ef
Binary files /dev/null and b/src/public/app/doc_notes/en/User Guide/User Guide/Installation/On Fedora Linux_image.png differ
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Installation_Fedora_logo.svg b/src/public/app/doc_notes/en/User Guide/User Guide/Installation_Fedora_logo.svg
new file mode 100644
index 000000000..1ad9c15c8
--- /dev/null
+++ b/src/public/app/doc_notes/en/User Guide/User Guide/Installation_Fedora_logo.svg
@@ -0,0 +1,10 @@
+
+
\ No newline at end of file
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/10_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/10_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/3_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/11_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/3_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/11_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/9_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/12_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/9_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/12_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/13_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/13_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/13_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/13_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/4_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/14_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/4_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/14_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/19_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/15_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/19_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/15_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/8_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/16_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/8_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/16_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/12_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/17_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/12_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/17_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/10_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/18_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/10_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/18_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/11_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/19_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/11_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/19_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/5_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/1_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/5_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/1_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/14_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/2_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/14_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/2_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/1_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/3_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/1_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/3_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/7_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/4_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/7_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/4_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/2_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/5_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/2_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/5_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/18_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/6_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/18_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/6_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/6_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/7_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/6_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/7_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/17_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/8_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/17_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/8_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/15_Geo map_image.png b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/9_Geo map_image.png
similarity index 100%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/15_Geo map_image.png
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/9_Geo map_image.png
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/Geo map.html b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Geo map.html
similarity index 80%
rename from src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/Geo map.html
rename to src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Geo map.html
index bcaf6d7b7..65d8ee517 100644
--- a/src/public/app/doc_notes/en/User Guide/User Guide/Types of notes/Geo map.html
+++ b/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Geo map.html
@@ -26,7 +26,7 @@
1
-
@@ -36,7 +36,7 @@
2
-
@@ -51,8 +51,8 @@
Use the mouse wheel, two-finger gesture on a touchpad or the +/- buttons
on the top-left to adjust the zoom.
-
The position on the map and the zoom are saved inside the map note. When
- visting again the note it will restore this position.
+
The position on the map and the zoom are saved inside the map note and
+ restored when visiting again the note.
Adding a marker using the map
@@ -69,18 +69,18 @@
To create a marker, first navigate to the desired point on the map. Then
press the
button on the top-right of the map.
+ src="5_Geo map_image.png" width="72" height="66">button on the top-right of the map.
If the button is not visible, make sure the button section is visible
by pressing the chevron button (
) in the top-right of the map.
+ src="11_Geo map_image.png" width="72" height="66">) in the top-right of the map.
2
-
@@ -96,7 +96,7 @@
3
-
@@ -107,7 +107,7 @@
4
-
@@ -118,6 +118,15 @@
+
How the location of the markers is stored
+
The location of a marker is stored in the #geolocation attribute
+ of the child notes:
+
+
+
+
This value can be added manually if needed. The value of the attribute
+ is made up of the latitude and longitude separated by a comma.
Repositioning markers
It's possible to reposition existing markers by simply drag and dropping
them to the new destination.
@@ -125,13 +134,30 @@
If moved by mistake, there is currently no way to undo the change. If
the mouse was not yet released, it's possible to force a refresh of the
page (Ctrl+R or Meta+R) to cancel it.
-
Adding the geolocation manually
-
The location of a marker is stored in the #geolocation attribute
- of the child notes:
-
-
-
+
Interaction with the markers
+
+
Hovering over a marker will display the content of the note it belongs
+ to.
+
+
Clicking on the note title in the tooltip will navigate to the note in
+ the current view.
+
+
+
Middle-clicking the marker will open the note in a new tab.
+
Right-clicking the marker will open a contextual menu allowing:
+
+
Opening the note in a new tab, split or window.
+
Opening the location using an external application (if the operating system
+ supports it).
+
Removing the marker from the map, which will remove the #geolocation attribute
+ of the note. To add it back again, the coordinates have to be manually
+ added back in.
+
+
+
+
Adding the coordinates manually
+
In a nutshell, create a child note and set the #geolocation attribute
+ to the coordinates.
The value of the attribute is made up of the latitude and longitude separated
by a comma.
+
+
+
\ No newline at end of file
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Scripting/Examples/Downloading responses from Goo.html b/src/public/app/doc_notes/en/User Guide/User Guide/Scripting/Examples/Downloading responses from Goo.html
new file mode 100644
index 000000000..7e4955655
--- /dev/null
+++ b/src/public/app/doc_notes/en/User Guide/User Guide/Scripting/Examples/Downloading responses from Goo.html
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+ Downloading responses from Google Forms
+
+
+
+
+
Downloading responses from Google Forms
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Shared notes/1_Serving directly the conte.png b/src/public/app/doc_notes/en/User Guide/User Guide/Shared notes/1_Serving directly the conte.png
new file mode 100644
index 000000000..bab0f97f5
Binary files /dev/null and b/src/public/app/doc_notes/en/User Guide/User Guide/Shared notes/1_Serving directly the conte.png differ
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Shared notes/Serving directly the conte.png b/src/public/app/doc_notes/en/User Guide/User Guide/Shared notes/Serving directly the conte.png
new file mode 100644
index 000000000..981a43146
Binary files /dev/null and b/src/public/app/doc_notes/en/User Guide/User Guide/Shared notes/Serving directly the conte.png differ
diff --git a/src/public/app/doc_notes/en/User Guide/User Guide/Shared notes/Serving directly the content o.html b/src/public/app/doc_notes/en/User Guide/User Guide/Shared notes/Serving directly the content o.html
new file mode 100644
index 000000000..d64d24e2e
--- /dev/null
+++ b/src/public/app/doc_notes/en/User Guide/User Guide/Shared notes/Serving directly the content o.html
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+ Serving directly the content of a note
+
+
+
+
+
Serving directly the content of a note
+
+
+
When accessing a shared note, Trilium will render it as a web page. Sometimes
+ it's desirable to serve the content directly so that it can be used in
+ a script or downloaded by the user.
+
+
+
+
+
+
+
+
+
+
+
+ A note displayed as a web page (HTML)
+
+
+
+
+
+ A note displayed as a raw format
+
+
+
+
+
+
+
By adding an attribute to the note
+
Simply add the #shareRaw attribute and the note will always
+ be rendered raw when accessed from the share URL.
+
By altering the URL
+
Append ?raw to the URL to display a note in its raw format
+ regardless of whether the #shareRaw attribute is added on the
+ note.
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/public/app/doc_notes/en/User Guide/index.html b/src/public/app/doc_notes/en/User Guide/index.html
index bac353ead..fc49dc742 100644
--- a/src/public/app/doc_notes/en/User Guide/index.html
+++ b/src/public/app/doc_notes/en/User Guide/index.html
@@ -6,6 +6,6 @@