ob-sass.el 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. ;;; ob-sass.el --- org-babel functions for the sass css generation language
  2. ;; Copyright (C) 2009 Eric Schulte
  3. ;; Author: Eric Schulte
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 0.01
  7. ;;; License:
  8. ;; This program is free software; you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation; either version 3, or (at your option)
  11. ;; any later version.
  12. ;;
  13. ;; This program is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;;
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  20. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. ;; Boston, MA 02110-1301, USA.
  22. ;;; Commentary:
  23. ;; For more information on sass see http://sass-lang.com/
  24. ;;
  25. ;; This accepts a 'file' header argument which is the target of the
  26. ;; compiled sass. The default output type for sass evaluation is
  27. ;; either file (if a 'file' header argument was given) or scalar if no
  28. ;; such header argument was supplied.
  29. ;;
  30. ;; A 'cmdline' header argument can be supplied to pass arguments to
  31. ;; the sass command line.
  32. ;;; Requirements:
  33. ;; - sass-mode :: http://github.com/nex3/haml/blob/master/extra/sass-mode.el
  34. ;;; Code:
  35. (require 'ob)
  36. (require 'sass-mode)
  37. (org-babel-add-interpreter "sass")
  38. (add-to-list 'org-babel-tangle-langs '("sass" "sass"))
  39. (defun org-babel-expand-body:sass (body params &optional processed-params)
  40. "Expand BODY according to PARAMS, return the expanded body." body)
  41. (defun org-babel-execute:sass (body params)
  42. "Execute a block of Sass code with org-babel. This function is
  43. called by `org-babel-execute-src-block'."
  44. (message "executing Sass source code block")
  45. (let* ((result-params (split-string (or (cdr (assoc :results params)) "")))
  46. (file (cdr (assoc :file params)))
  47. (out-file (or file (make-temp-file "org-babel-sass-out")))
  48. (cmdline (cdr (assoc :cmdline params)))
  49. (in-file (make-temp-file "org-babel-sass-in"))
  50. (cmd (concat "sass " (or cmdline "") in-file " " out-file)))
  51. (with-temp-file in-file
  52. (insert (org-babel-expand-body:sass body params))) (shell-command cmd)
  53. (or file (with-temp-buffer (insert-file-contents out-file) (buffer-string)))))
  54. (defun org-babel-prep-session:sass (session params)
  55. "This function does nothing as sass does not support sessions."
  56. (error "Sass does not support sessions"))
  57. (provide 'ob-sass)
  58. ;;; ob-sass.el ends here