From 9c6e43b5f83a31356a044bc1ac13817a408c9b7e Mon Sep 17 00:00:00 2001 From: jethrokuan Date: Sun, 13 Mar 2022 16:05:25 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=20cce6a?= =?UTF-8?q?0563002faa9b27911f0ca31dc7da94b90e6=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manual.html | 8 ++++---- org-roam.org | 8 ++++---- org-roam.texi | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/manual.html b/manual.html index 2053c2d..36e074e 100644 --- a/manual.html +++ b/manual.html @@ -1175,10 +1175,10 @@ Next: -
(setq org-roam-mode-section-functions
+
(setq org-roam-mode-sections
       (list #'org-roam-backlinks-section
             #'org-roam-reflinks-section
             ;; #'org-roam-unlinked-references-section
@@ -1189,10 +1189,10 @@ title/alias but are not linked
 

For each section function, you can pass args along to modify its behaviour. For example, if you want to render unique sources for backlinks (and also keep -rendering reference links), set org-roam-mode-section-functions as follows: +rendering reference links), set org-roam-mode-sections as follows:

-
(setq org-roam-mode-section-functions
+
(setq org-roam-mode-sections
       '((org-roam-backlinks-section :unique t)
         org-roam-reflinks-section))
 
diff --git a/org-roam.org b/org-roam.org index 260e384..56afb9d 100644 --- a/org-roam.org +++ b/org-roam.org @@ -636,10 +636,10 @@ There are currently 3 provided widget types: - Unlinked references :: View nodes that contain text that match the nodes title/alias but are not linked -To configure what sections are displayed in the buffer, set ~org-roam-mode-section-functions~. +To configure what sections are displayed in the buffer, set ~org-roam-mode-sections. #+begin_src emacs-lisp - (setq org-roam-mode-section-functions + (setq org-roam-mode-sections (list #'org-roam-backlinks-section #'org-roam-reflinks-section ;; #'org-roam-unlinked-references-section @@ -650,10 +650,10 @@ Note that computing unlinked references may be slow, and has not been added in b For each section function, you can pass args along to modify its behaviour. For example, if you want to render unique sources for backlinks (and also keep -rendering reference links), set ~org-roam-mode-section-functions~ as follows: +rendering reference links), set ~org-roam-mode-sections~ as follows: #+begin_src emacs-lisp - (setq org-roam-mode-section-functions + (setq org-roam-mode-sections '((org-roam-backlinks-section :unique t) org-roam-reflinks-section)) #+end_src diff --git a/org-roam.texi b/org-roam.texi index 38d0ed4..3e3494e 100644 --- a/org-roam.texi +++ b/org-roam.texi @@ -976,10 +976,10 @@ There are currently 3 provided widget types: title/alias but are not linked @end itemize -To configure what sections are displayed in the buffer, set @code{org-roam-mode-section-functions}. +To configure what sections are displayed in the buffer, set ~org-roam-mode-sections. @lisp -(setq org-roam-mode-section-functions +(setq org-roam-mode-sections (list #'org-roam-backlinks-section #'org-roam-reflinks-section ;; #'org-roam-unlinked-references-section @@ -990,10 +990,10 @@ Note that computing unlinked references may be slow, and has not been added in b For each section function, you can pass args along to modify its behaviour. For example, if you want to render unique sources for backlinks (and also keep -rendering reference links), set @code{org-roam-mode-section-functions} as follows: +rendering reference links), set @code{org-roam-mode-sections} as follows: @lisp -(setq org-roam-mode-section-functions +(setq org-roam-mode-sections '((org-roam-backlinks-section :unique t) org-roam-reflinks-section)) @end lisp