From 9da6cdecbb55dc3696fc2c94d47d193f4cf5e9c2 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Sat, 5 Dec 2015 18:14:12 +0100 Subject: Add blog-insert-debian-bts-markdown-link This allows to easily link to Debian's BTS --- blog.el | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'blog.el') diff --git a/blog.el b/blog.el index cf9f5d7..5c8dc0d 100644 --- a/blog.el +++ b/blog.el @@ -15,3 +15,21 @@ ) (when bounds (delete-region (car bounds) (cdr bounds))) (markdown-insert-reference-link text "" url ""))) + +(defun blog-insert-debian-bts-markdown-link () + "Read CVE/DSA number and create link to security tracker" + (interactive) + (let* ( + (bounds (or (and (markdown-use-region-p) + (cons (region-beginning) (region-end))) + (markdown-bounds-of-thing-at-point 'symbol))) + (text (if bounds + (buffer-substring (car bounds) (cdr bounds)) + (read-string "Bugnumber Number: "))) + (bugnum (if (string-prefix-p "#" text) + (substring text 1) + text)) + (url (concat "http://bugs.debian.org/" bugnum)) + ) + (when bounds (delete-region (car bounds) (cdr bounds))) + (markdown-insert-reference-link text "" url ""))) -- cgit v1.2.3