summaryrefslogtreecommitdiff
path: root/blog.el
blob: cf9f5d791fafb4041d6fa485a093a42c7fde0728 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;Markdown mode doesn't provide anything
;(require 'markdown)

(defun blog-insert-cve-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 "CVE/DSA Number: ")))
         (url (concat "http://security-tracker.debian.org/tracker/" text))
	 )
    (when bounds (delete-region (car bounds) (cdr bounds)))
    (markdown-insert-reference-link text "" url "")))