Release 7.5
[org-mode/org-tableheadings.git] / lisp / ob-css.el
blobeefa615e6296912bf7141e9d77a7c58135329277
1 ;;; ob-css.el --- org-babel functions for css evaluation
3 ;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
5 ;; Author: Eric Schulte
6 ;; Keywords: literate programming, reproducible research
7 ;; Homepage: http://orgmode.org
8 ;; Version: 7.5
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; Since CSS can't be executed, this file exists solely for tangling
28 ;; CSS from org-mode files.
30 ;;; Code:
31 (require 'ob)
33 (defvar org-babel-default-header-args:css '())
35 (defun org-babel-execute:css (body params)
36 "Execute a block of CSS code.
37 This function is called by `org-babel-execute-src-block'."
38 body)
40 (defun org-babel-prep-session:css (session params)
41 "Return an error if the :session header argument is set.
42 CSS does not support sessions."
43 (error "CSS sessions are nonsensical"))
45 (provide 'ob-css)
47 ;; arch-tag: f4447e8c-50ab-41f9-b322-b7b9574d9fbe
49 ;;; ob-css.el ends here