1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: Add emacs-denote-markdown.

* gnu/packages/emacs-xyz.scm (emacs-denote-markdown): New variable.

Change-Id: Icb2ce8f720068ab708148e2cc5ac99091eb5d99b
This commit is contained in:
jgart 2025-04-23 14:16:07 -05:00
parent 57b187f12d
commit 171e37e2cd
No known key found for this signature in database
GPG key ID: A52AA2B477B6DD35

View file

@ -19807,6 +19807,25 @@ journaling. While it is possible to use the generic @code{denote} command
to streamline the journaling workflow.") to streamline the journaling workflow.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-denote-markdown
(package
(name "emacs-denote-markdown")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://elpa.gnu.org/packages/denote-markdown-"
version ".tar"))
(sha256
(base32 "0ic8kqfw56xsm9s0rlq7cgnh0dzjsbbcx7kdk55dggpvxv67jj62"))))
(build-system emacs-build-system)
(propagated-inputs (list emacs-denote))
(home-page "https://github.com/protesilaos/denote-markdown")
(synopsis "Extensions that better integrate Denote with Markdown")
(description "This package provides some convenience functions to better
integrate Markdown with Denote.")
(license license:gpl3+)))
(define-public emacs-denote-silo (define-public emacs-denote-silo
(package (package
(name "emacs-denote-silo") (name "emacs-denote-silo")