emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] Exporting xml and html code with syntax highlight


From: Charles Philip Chan
Subject: [O] Exporting xml and html code with syntax highlight
Date: Fri, 31 Aug 2012 01:46:21 -0400
User-agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.2.50 (gnu/linux)

Hello all:

Tonight I had a need to export some xml code with syntax highlight. I
figured that the best way to do it is to modify ob-css.el (by a simple
search and replace). To my delight, it work, so I did one for html
also. I hope people will find them useful.

Cheers,
Charles

;;; ob-xml.el --- org-babel functions for xml evaluation

;; Copyright (C) 2009-2012  Free Software Foundation, Inc.

;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research
;; Homepage: http://orgmode.org

;; This file is part of GNU Emacs.

;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; 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,
;; 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.

;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; Since xml can't be executed, this file exists solely for tangling
;; xml from org-mode files.

;;; Code:
(require 'ob)

(defvar org-babel-default-header-args:xml '())

(defun org-babel-execute:xml (body params)
  "Execute a block of xml code.
This function is called by `org-babel-execute-src-block'."
  body)

(defun org-babel-prep-session:xml (session params)
  "Return an error if the :session header argument is set.
xml does not support sessions."
  (error "xml sessions are nonsensical"))

(provide 'ob-xml)



;;; ob-xml.el ends here
;;; ob-html.el --- org-babel functions for html evaluation

;; Copyright (C) 2009-2012  Free Software Foundation, Inc.

;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research
;; Homepage: http://orgmode.org

;; This file is part of GNU Emacs.

;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; 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,
;; 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.

;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; Since html can't be executed, this file exists solely for tangling
;; html from org-mode files.

;;; Code:
(require 'ob)

(defvar org-babel-default-header-args:html '())

(defun org-babel-execute:html (body params)
  "Execute a block of html code.
This function is called by `org-babel-execute-src-block'."
  body)

(defun org-babel-prep-session:html (session params)
  "Return an error if the :session header argument is set.
html does not support sessions."
  (error "html sessions are nonsensical"))

(provide 'ob-html)



;;; ob-html.el ends here
-- 
"Open Standards, Open Documents, and Open Source"

  -- Scott Bradner (Open Sources, 1999 O'Reilly and Associates)

Attachment: pgpKiKT6yaznF.pgp
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]