2015-10-26 00:56:00 +00:00
|
|
|
;;; ob-css.el --- Babel Functions for CSS -*- lexical-binding: t; -*-
|
2009-08-04 18:43:06 +00:00
|
|
|
|
2024-01-02 01:47:10 +00:00
|
|
|
;; Copyright (C) 2009-2024 Free Software Foundation, Inc.
|
2009-08-04 18:43:06 +00:00
|
|
|
|
|
|
|
;; Author: Eric Schulte
|
|
|
|
;; Keywords: literate programming, reproducible research
|
2021-09-26 07:44:29 +00:00
|
|
|
;; URL: https://orgmode.org
|
2009-08-04 18:43:06 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
2009-08-04 18:43:06 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2009-08-04 18:43:06 +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-04 18:43:06 +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-04 18:43:06 +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-04 18:43:06 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Since CSS can't be executed, this file exists solely for tangling
|
2016-08-23 20:13:56 +00:00
|
|
|
;; CSS from Org files.
|
2009-08-04 18:43:06 +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-04 18:43:06 +00:00
|
|
|
|
2010-06-25 17:12:54 +00:00
|
|
|
(defvar org-babel-default-header-args:css '())
|
|
|
|
|
2015-10-26 00:56:00 +00:00
|
|
|
(defun org-babel-execute:css (body _params)
|
2023-08-06 09:10:21 +00:00
|
|
|
"Execute BODY of CSS code.
|
2010-07-13 22:56:17 +00:00
|
|
|
This function is called by `org-babel-execute-src-block'."
|
2012-08-11 17:10:44 +00:00
|
|
|
body)
|
2009-08-04 18:43:06 +00:00
|
|
|
|
2015-10-26 00:56:00 +00:00
|
|
|
(defun org-babel-prep-session:css (_session _params)
|
2010-07-13 22:56:17 +00:00
|
|
|
"Return an error if the :session header argument is set.
|
|
|
|
CSS does not support sessions."
|
2010-07-07 07:09:59 +00:00
|
|
|
(error "CSS sessions are nonsensical"))
|
2009-08-04 18:43:06 +00:00
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
(provide 'ob-css)
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
;;; ob-css.el ends here
|