org-babel-sass.el 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. ;;; org-babel-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 'org-babel)
  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) body)
  40. (defun org-babel-execute:sass (body params)
  41. "Execute a block of Sass code with org-babel. This function is
  42. called by `org-babel-execute-src-block'."
  43. (message "executing Sass source code block")
  44. (let* ((result-params (split-string (or (cdr (assoc :results params)) "")))
  45. (file (cdr (assoc :file params)))
  46. (out-file (or file (make-temp-file "org-babel-sass-out")))
  47. (cmdline (cdr (assoc :cmdline params)))
  48. (in-file (make-temp-file "org-babel-sass-in"))
  49. (cmd (concat "sass " (or cmdline "") in-file " " out-file)))
  50. (with-temp-file in-file
  51. (insert (org-babel-expand-body:sass body params))) (shell-command cmd)
  52. (or file (with-temp-buffer (insert-file-contents out-file) (buffer-string)))))
  53. (defun org-babel-prep-session:sass (session params)
  54. (error "Sass does not support sessions"))
  55. (provide 'org-babel-sass)
  56. ;;; org-babel-sass.el ends here