Deploying to gh-pages from @ b179a5a1a6 🚀

This commit is contained in:
jethrokuan
2022-03-12 21:12:28 +00:00
parent dd1e16e816
commit ce91aa51e6
3 changed files with 29 additions and 0 deletions

View File

@@ -1187,6 +1187,16 @@ title/alias but are not linked
<p>Note that computing unlinked references may be slow, and has not been added in by default.
</p>
<p>Or, if you want to render unique sources for backlinks (and also keep rendering reference links), set <code>org-roam-mode-section-functions</code> as follows:
</p>
<div class="lisp">
<pre class="lisp"> (setq org-roam-mode-section-functions
(list
(lambda (node) (org-roam-backlinks-section node :unique t))
#'org-roam-reflinks-section))
</pre></div>
<hr>
<span id="Configuring-the-Org_002droam-buffer-display"></span><div class="header">
<p>

View File

@@ -648,6 +648,15 @@ To configure what sections are displayed in the buffer, set ~org-roam-mode-secti
Note that computing unlinked references may be slow, and has not been added in by default.
Or, if you want to render unique sources for backlinks (and also keep rendering reference links), set ~org-roam-mode-section-functions~ as follows:
#+begin_src emacs-lisp
(setq org-roam-mode-section-functions
(list
(lambda (node) (org-roam-backlinks-section node :unique t))
#'org-roam-reflinks-section))
#+end_src
** Configuring the Org-roam buffer display
Org-roam does not control how the pop-up buffer is displayed: this is left to

View File

@@ -988,6 +988,16 @@ To configure what sections are displayed in the buffer, set @code{org-roam-mode-
Note that computing unlinked references may be slow, and has not been added in by default.
Or, if you want to render unique sources for backlinks (and also keep rendering reference links), set @code{org-roam-mode-section-functions} as follows:
@lisp
(setq org-roam-mode-section-functions
(list
(lambda (node) (org-roam-backlinks-section node :unique t))
#'org-roam-reflinks-section))
@end lisp
@node Configuring the Org-roam buffer display
@section Configuring the Org-roam buffer display