-
Notifications
You must be signed in to change notification settings - Fork 2
/
ob-svgbob.el
62 lines (48 loc) · 2.06 KB
/
ob-svgbob.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
;;; ob-svgbob.el --- Babel Functions for svgbob -*- lexical-binding: t; -*-
;; Copyright (C) 2018 mgxm
;; Author: Marcio Giaxa <i@mgxm.me>
;; Keywords: tools, files
;; Homepage: https://github.com/mgxm/ob-svgbob
;; Version: 0.0.1
;; Package-Requires: ((emacs "24"))
;; This file is not part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; Org-Babel support for evaluating svgbob source code.
;;
;; For information on svgbob see https://github.com/ivanceras/svgbob
;;; Code:
(require 'ob)
(defvar org-babel-default-header-args:svgbob
'((:results . "file")
(:exports . "results"))
"Default arguments to use when evaluating a svgbob source block.")
(defun org-babel-execute:svgbob (body params)
"Execute a BODY of Svgbob code with PARAMS via org-babel.
This function is called by `org-babel-execute-src-block'."
(let* ((out-file (or (cdr (assq :file params))
(error "You need to specify a :file parameter")))
(cmd (or (cdr (assq :cmd params)) "svgbob"))
(options (cdr (assq :options params)))
(in-file (org-babel-temp-file "svgbob-")))
(with-temp-file in-file (insert body))
(org-babel-eval
(concat cmd
" " (org-babel-process-file-name in-file)
" " options
" -o " (org-babel-process-file-name out-file)) "")
nil))
(defun org-babel-prep-session:svgbob (_session _params)
"Return an error because svgbob does not support sessions."
(error "Svgbob does not support sessions"))
(provide 'ob-svgbob)
;;; ob-svgbob.el ends here