summaryrefslogtreecommitdiff
path: root/blog.el
blob: a8827add6b81168f66f2d41c9eb1fa37bf276514 (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 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 Number: ")))
         (url (concat "http://security-tracker.debian.org/tracker/" text))
	 )
    (when bounds (delete-region (car bounds) (cdr bounds)))
    (markdown-insert-reference-link text "" url "")))