This repository has been archived by the owner on Oct 18, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathnroam-utils.el
64 lines (50 loc) · 2.24 KB
/
nroam-utils.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
;;; nroam-utils.el --- Util functions for nroam -*- lexical-binding: t; -*-
;; Copyright (C) 2021 Nicolas Petton
;; Author: Nicolas Petton <[email protected]>
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; This library provides utility functions used by other files in nroam.
;;; Code:
(require 'seq)
(require 'org-roam)
(defun nroam--pluralize (n thing)
"Pluralize the string THING if N>1."
(format "%s%s" thing (if (> n 1) "s" "")))
(defun nroam--ensure-empty-line ()
"Insert a newline character if the buffer does not contain one before point."
(let ((inhibit-read-only t))
(unless (eq ?\n (char-before (1- (point)))) (insert "\n"))))
(defun nroam--insert-heading (level title &optional tags)
"Insert TITLE as a section heading with LEVEL stars.
When non-nil, add the string or list of strings as TAGS to the heading."
(let ((pos (point))
(stars (make-string level ?*)))
(insert stars " " title "\n")
(when tags
(save-excursion
(goto-char pos)
(org-set-tags tags)))))
(defun nroam--do-separated-by-newlines (function sequence)
"Apply FUNCTION to each element of SEQUENCE.
Insert a single newline between each call to FUNCTION."
(seq-do-indexed (lambda (item index)
(unless (= index 0)
(delete-blank-lines)
(nroam--ensure-empty-line))
(funcall function item))
sequence))
(defun nroam--fix-links (content origin)
"Correct all relative links in CONTENT from ORIGIN.
Temporary fix until `org-roam' v2 is out."
(org-roam-buffer-expand-links content origin))
(provide 'nroam-utils)
;;; nroam-utils.el ends here