From 59d12f1864187291b906efb79dbd0c9b1772f069 Mon Sep 17 00:00:00 2001 From: zaeph Date: Tue, 10 Nov 2020 13:32:22 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=204f6eb?= =?UTF-8?q?285bf6abd31c6e96a2e723d61e0b597f4cb=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...troduction-to-the-Zettelkasten-Method.html | 2 +- ...Capturing-and-finding-daily_002dnotes.html | 121 ++++++++++++ manual/Configuration.html | 131 ++++++++++++ ...{Daily-Notes.html => Daily_002dnotes.html} | 26 ++- manual/Diagnosing-and-Repairing-Files.html | 4 +- ...dy-matches-one-of-the-candidates_003f.html | 2 +- .../Installing-from-the-Git-Repository.html | 2 +- manual/Navigation.html | 92 +++++++++ manual/Org_002djournal.html | 11 +- manual/Roam-Protocol.html | 2 +- manual/The-roam_002dref-protocol.html | 12 +- manual/index.html | 19 +- org-roam.org | 142 +++++++++++-- org-roam.texi | 186 ++++++++++++++++-- 14 files changed, 699 insertions(+), 53 deletions(-) create mode 100644 manual/Capturing-and-finding-daily_002dnotes.html create mode 100644 manual/Configuration.html rename manual/{Daily-Notes.html => Daily_002dnotes.html} (70%) create mode 100644 manual/Navigation.html diff --git a/manual/A-Brief-Introduction-to-the-Zettelkasten-Method.html b/manual/A-Brief-Introduction-to-the-Zettelkasten-Method.html index 8c4d58e..aa09578 100644 --- a/manual/A-Brief-Introduction-to-the-Zettelkasten-Method.html +++ b/manual/A-Brief-Introduction-to-the-Zettelkasten-Method.html @@ -102,7 +102,7 @@ links. fleeting notes: they are simple reminders of information or ideas that will need to be processed later on, or trashed. This is typically accomplished using org-capture (see (org)capture), or using Org-roam’s daily notes -functionality (see Daily Notes). This provides a central inbox for collecting +functionality (see Daily-notes). This provides a central inbox for collecting thoughts, to be processed later into permanent notes.

Permanent notes are further split into two categories: literature notes and diff --git a/manual/Capturing-and-finding-daily_002dnotes.html b/manual/Capturing-and-finding-daily_002dnotes.html new file mode 100644 index 0000000..ee9791b --- /dev/null +++ b/manual/Capturing-and-finding-daily_002dnotes.html @@ -0,0 +1,121 @@ + + + + + + +Capturing and finding daily-notes (Org-roam User Manual) + + + + + + + + + + + + + + + + + + + +

+

+Next: , Previous: , Up: Daily-notes   [Contents]

+
+
+ +

15.2 Capturing and finding daily-notes

+ + + +

There are variants of those commands for -yesterday and -tomorrow: +

+ + +

There are also commands which allow you to use Emacs’s calendar to find the date +

+ + + + + + + diff --git a/manual/Configuration.html b/manual/Configuration.html new file mode 100644 index 0000000..c7c88cb --- /dev/null +++ b/manual/Configuration.html @@ -0,0 +1,131 @@ + + + + + + +Configuration (Org-roam User Manual) + + + + + + + + + + + + + + + + + + + +
+

+Next: , Up: Daily-notes   [Contents]

+
+
+ +

15.1 Configuration

+ +

For org-roam-dailies to work, you need to define two variables: +

+ + +

Here is a sane default configuration: +

+
+
(setq org-roam-dailies-directory "daily/")
+
+(setq org-roam-dailies-capture-templates
+      '(("d" "default" entry
+         #'org-roam-capture--get-point
+         "* %?"
+         :file-name "daily/%<%Y-%m-%d>"
+         :head "#+title: %<%Y-%m-%d>\n\n")))
+
+ +

Make sure that org-roam-dailies-directory appears in :file-name for your +notes to be recognized as daily-notes. You can have different templates +placing their notes in different directories, but the one in +org-roam-dailies-directory will be considered as the main one in commands. +

+

See The Templating System for creating new +templates. org-roam-dailies provides an extra :olp option which allows +specifying the outline-path to a heading: +

+
+
(setq org-roam-dailies-capture-templates
+      '(("l" "lab" entry
+         #'org-roam-capture--get-point
+         "* %?"
+         :file-name "daily/%<%Y-%m-%d>"
+         :head "#+title: %<%Y-%m-%d>\n\n* Lab notes\n* Journal"
+         :olp ("Journal"))
+
+        ("j" "journal" entry
+         #'org-roam-capture--get-point
+         "* %?"
+         :file-name "daily/%<%Y-%m-%d>"
+         :head "#+title: %<%Y-%m-%d>\n\n* Lab notes\n* Journal"
+         :olp ("Lab notes"))))
+
+ +

The template l will put its notes under the heading ‘Lab notes’, and the +template j will put its notes under the heading ‘Journal’. When you use +:olp, make sure that the headings are present in :head. +

+ + + + + diff --git a/manual/Daily-Notes.html b/manual/Daily_002dnotes.html similarity index 70% rename from manual/Daily-Notes.html rename to manual/Daily_002dnotes.html index cc4712c..35cba40 100644 --- a/manual/Daily-Notes.html +++ b/manual/Daily_002dnotes.html @@ -15,17 +15,17 @@ General Public License for more details. -Daily Notes (Org-roam User Manual) +Daily-notes (Org-roam User Manual) - - + + - + + + + + + + + +
+

+Previous: , Up: Daily-notes   [Contents]

+
+
+ +

15.3 Navigation

+ +

You can navigate between daily-notes: +

+ + + + + + + diff --git a/manual/Org_002djournal.html b/manual/Org_002djournal.html index 468a7f4..5a607ca 100644 --- a/manual/Org_002djournal.html +++ b/manual/Org_002djournal.html @@ -69,10 +69,11 @@ Next:

19.2.4 Org-journal

-

Org-journal is a more -powerful alternative to the simple function org-roam-dailies-today. It -provides better journaling capabilities, and a nice calendar interface -to see all dated entries. +

Org-journal provides journaling +capabilities to Org-mode. A lot of its functionalities have been incorporated +into Org-roam under the name org-roam-dailies. It remains a good tool if +you want to isolate your verbose journal entries from the ideas you would +write on a scratchpad.

(use-package org-journal
@@ -81,7 +82,7 @@ to see all dated entries.
   :custom
   (org-journal-date-prefix "#+title: ")
   (org-journal-file-format "%Y-%m-%d.org")
-  (org-journal-dir "/path/to/org-roam-files/")
+  (org-journal-dir "/path/to/journal/files/")
   (org-journal-date-format "%A, %d %B %Y"))
 
diff --git a/manual/Roam-Protocol.html b/manual/Roam-Protocol.html index c3f3af9..8a759c4 100644 --- a/manual/Roam-Protocol.html +++ b/manual/Roam-Protocol.html @@ -63,7 +63,7 @@ ul.no-bullet {list-style: none}

-Next: , Previous: , Up: Top   [Contents]

+Next: , Previous: , Up: Top   [Contents]


diff --git a/manual/The-roam_002dref-protocol.html b/manual/The-roam_002dref-protocol.html index efbb3d9..24b57dd 100644 --- a/manual/The-roam_002dref-protocol.html +++ b/manual/The-roam_002dref-protocol.html @@ -25,7 +25,7 @@ General Public License for more details. - +