mirror of https://github.com/Chizi123/.emacs.d.git

Chizi123
2018-11-18 76bbd07de7add0f9d13c6914f158d19630fe2f62
commit | author | age
76bbd0 1 ;;; ob-css.el --- Babel Functions for CSS            -*- lexical-binding: t; -*-
C 2
3 ;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
4
5 ;; Author: Eric Schulte
6 ;; Keywords: literate programming, reproducible research
7 ;; Homepage: https://orgmode.org
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;; Since CSS can't be executed, this file exists solely for tangling
27 ;; CSS from Org files.
28
29 ;;; Code:
30 (require 'ob)
31
32 (defvar org-babel-default-header-args:css '())
33
34 (defun org-babel-execute:css (body _params)
35   "Execute a block of CSS code.
36 This function is called by `org-babel-execute-src-block'."
37   body)
38
39 (defun org-babel-prep-session:css (_session _params)
40   "Return an error if the :session header argument is set.
41 CSS does not support sessions."
42   (error "CSS sessions are nonsensical"))
43
44 (provide 'ob-css)
45
46
47
48 ;;; ob-css.el ends here