2015-10-26 00:56:00 +00:00
|
|
|
;;; ob-sass.el --- Babel Functions for the Sass CSS generation language -*- lexical-binding: t; -*-
|
2009-08-17 20:39:34 +00:00
|
|
|
|
2023-01-01 10:31:12 +00:00
|
|
|
;; Copyright (C) 2009-2023 Free Software Foundation, Inc.
|
2009-08-17 20:39:34 +00:00
|
|
|
|
|
|
|
;; Author: Eric Schulte
|
|
|
|
;; Keywords: literate programming, reproducible research
|
2021-09-26 07:44:29 +00:00
|
|
|
;; URL: https://orgmode.org
|
2009-08-17 20:39:34 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
2009-08-17 20:39:34 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2009-08-17 20:39:34 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2010-06-25 16:32:35 +00:00
|
|
|
;; 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,
|
2009-08-17 20:39:34 +00:00
|
|
|
;; 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.
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2009-08-17 20:39:34 +00:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2009-08-17 20:39:34 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
2021-03-21 18:55:14 +00:00
|
|
|
;; For more information on sass see https://sass-lang.com/
|
2009-08-17 20:39:34 +00:00
|
|
|
;;
|
|
|
|
;; This accepts a 'file' header argument which is the target of the
|
|
|
|
;; compiled sass. The default output type for sass evaluation is
|
|
|
|
;; either file (if a 'file' header argument was given) or scalar if no
|
|
|
|
;; such header argument was supplied.
|
|
|
|
;;
|
|
|
|
;; A 'cmdline' header argument can be supplied to pass arguments to
|
|
|
|
;; the sass command line.
|
|
|
|
|
|
|
|
;;; Requirements:
|
|
|
|
|
2020-10-01 13:24:21 +00:00
|
|
|
;; - sass-mode :: https://github.com/nex3/haml/blob/master/extra/sass-mode.el
|
2009-08-17 20:39:34 +00:00
|
|
|
|
|
|
|
;;; Code:
|
2022-08-04 13:53:05 +00:00
|
|
|
|
|
|
|
(require 'org-macs)
|
|
|
|
(org-assert-version)
|
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
(require 'ob)
|
2009-08-17 20:39:34 +00:00
|
|
|
|
2010-06-25 17:12:54 +00:00
|
|
|
(defvar org-babel-default-header-args:sass '())
|
|
|
|
|
2009-08-17 20:39:34 +00:00
|
|
|
(defun org-babel-execute:sass (body params)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Execute a block of Sass code with Babel.
|
|
|
|
This function is called by `org-babel-execute-src-block'."
|
2016-09-22 17:45:15 +00:00
|
|
|
(let* ((file (cdr (assq :file params)))
|
2010-08-25 20:43:07 +00:00
|
|
|
(out-file (or file (org-babel-temp-file "sass-out-")))
|
2016-09-22 17:45:15 +00:00
|
|
|
(cmdline (cdr (assq :cmdline params)))
|
2010-08-25 20:43:07 +00:00
|
|
|
(in-file (org-babel-temp-file "sass-in-"))
|
2010-09-22 20:40:14 +00:00
|
|
|
(cmd (concat "sass " (or cmdline "")
|
|
|
|
" " (org-babel-process-file-name in-file)
|
|
|
|
" " (org-babel-process-file-name out-file))))
|
2010-04-16 05:18:13 +00:00
|
|
|
(with-temp-file in-file
|
2010-12-22 03:17:18 +00:00
|
|
|
(insert (org-babel-expand-body:generic body params)))
|
|
|
|
(org-babel-eval cmd "")
|
2010-12-21 10:21:28 +00:00
|
|
|
(if file
|
|
|
|
nil ;; signal that output has already been written to file
|
|
|
|
(with-temp-buffer (insert-file-contents out-file) (buffer-string)))))
|
2009-08-17 20:39:34 +00:00
|
|
|
|
2015-10-26 00:56:00 +00:00
|
|
|
(defun org-babel-prep-session:sass (_session _params)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Raise an error because sass does not support sessions."
|
2009-08-17 20:39:34 +00:00
|
|
|
(error "Sass does not support sessions"))
|
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
(provide 'ob-sass)
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
;;; ob-sass.el ends here
|