From 171e37e2cd3614bf5c453b1924a76bcf36f22c92 Mon Sep 17 00:00:00 2001 From: jgart Date: Wed, 23 Apr 2025 14:16:07 -0500 Subject: [PATCH] gnu: Add emacs-denote-markdown. * gnu/packages/emacs-xyz.scm (emacs-denote-markdown): New variable. Change-Id: Icb2ce8f720068ab708148e2cc5ac99091eb5d99b --- gnu/packages/emacs-xyz.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 61f804d6be490a3ddc9cf274274f03f4a64c6229..16bf4451bca621d96a3148b4b4230e688ee9f973 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -19807,6 +19807,25 @@ journaling. While it is possible to use the generic @code{denote} command to streamline the journaling workflow.") (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 (package (name "emacs-denote-silo")