Deploying to gh-pages from @ cce6a05630 🚀

This commit is contained in:
jethrokuan
2022-03-13 16:05:25 +00:00
parent 17c5eb54bd
commit 9c6e43b5f8
3 changed files with 12 additions and 12 deletions

View File

@@ -1175,10 +1175,10 @@ Next: <a href="#Configuring-the-Org_002droam-buffer-display" accesskey="n" rel="
title/alias but are not linked
</li></ul>
<p>To configure what sections are displayed in the buffer, set <code>org-roam-mode-section-functions</code>.
<p>To configure what sections are displayed in the buffer, set ~org-roam-mode-sections.
</p>
<div class="lisp">
<pre class="lisp">(setq org-roam-mode-section-functions
<pre class="lisp">(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
</p>
<p>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</code> as follows:
rendering reference links), set <code>org-roam-mode-sections</code> as follows:
</p>
<div class="lisp">
<pre class="lisp">(setq org-roam-mode-section-functions
<pre class="lisp">(setq org-roam-mode-sections
'((org-roam-backlinks-section :unique t)
org-roam-reflinks-section))
</pre></div>

View File

@@ -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

View File

@@ -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