Deploying to gh-pages from @ 5b15159a2c 🚀

This commit is contained in:
jethrokuan
2022-01-16 05:36:54 +00:00
parent 9b5eda1030
commit 84a5d8475f
3 changed files with 18 additions and 3 deletions

View File

@@ -811,8 +811,13 @@ for notes. This variable needs to be set before any calls to Org-roam functions.
</pre></div>
<p>The <code>file-truename</code> function is only necessary when you use symbolic links
inside <code>org-roam-directory</code>: Org-roam does not resolve symbolic links.
inside <code>org-roam-directory</code>: Org-roam does not resolve symbolic links. One can
however instruct Emacs to always resolve symlinks, at a performance cost:
</p>
<div class="lisp">
<pre class="lisp">(setq find-file-visit-truename t)
</pre></div>
<p>Next, we setup Org-roam to run functions on file changes to maintain cache
consistency. This is achieved by running <code>M-x org-roam-db-autosync-mode</code>. To
ensure that Org-roam is available on startup, place this in your Emacs

View File

@@ -369,7 +369,12 @@ For this tutorial, create an empty directory, and set ~org-roam-directory~:
#+END_SRC
The ~file-truename~ function is only necessary when you use symbolic links
inside ~org-roam-directory~: Org-roam does not resolve symbolic links.
inside ~org-roam-directory~: Org-roam does not resolve symbolic links. One can
however instruct Emacs to always resolve symlinks, at a performance cost:
#+begin_src emacs-lisp
(setq find-file-visit-truename t)
#+end_src
Next, we setup Org-roam to run functions on file changes to maintain cache
consistency. This is achieved by running ~M-x org-roam-db-autosync-mode~. To

View File

@@ -652,7 +652,12 @@ For this tutorial, create an empty directory, and set @code{org-roam-directory}:
@end lisp
The @code{file-truename} function is only necessary when you use symbolic links
inside @code{org-roam-directory}: Org-roam does not resolve symbolic links.
inside @code{org-roam-directory}: Org-roam does not resolve symbolic links. One can
however instruct Emacs to always resolve symlinks, at a performance cost:
@lisp
(setq find-file-visit-truename t)
@end lisp
Next, we setup Org-roam to run functions on file changes to maintain cache
consistency. This is achieved by running @code{M-x org-roam-db-autosync-mode}. To