* Exporting xml and html code with syntax highlight
@ 2012-08-31 5:46 Charles Philip Chan
2012-08-31 6:13 ` Bastien
0 siblings, 1 reply; 3+ messages in thread
From: Charles Philip Chan @ 2012-08-31 5:46 UTC (permalink / raw)
To: Org-mode
[-- Attachment #1.1: Type: text/plain, Size: 281 bytes --]
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
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: ob-xml.el --]
[-- Type: text/x-emacs-lisp, Size: 1463 bytes --]
;;; 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
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.3: ob-html.el --]
[-- Type: text/x-emacs-lisp, Size: 1475 bytes --]
;;; 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
[-- Attachment #1.4: Type: text/plain, Size: 125 bytes --]
--
"Open Standards, Open Documents, and Open Source"
-- Scott Bradner (Open Sources, 1999 O'Reilly and Associates)
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Exporting xml and html code with syntax highlight
2012-08-31 5:46 Exporting xml and html code with syntax highlight Charles Philip Chan
@ 2012-08-31 6:13 ` Bastien
2012-08-31 7:10 ` Charles Philip Chan
0 siblings, 1 reply; 3+ messages in thread
From: Bastien @ 2012-08-31 6:13 UTC (permalink / raw)
To: Charles Philip Chan; +Cc: Org-mode, schulte eric
Hi Charles,
Charles Philip Chan <cpchan@bell.net> writes:
> 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.
Thanks for exploring/adding this!
Since the functions do strictly nothing, we should have a way to
add them dynamically, without requiring a new ob-* file. This would
be useless for languages you only want to tangle, like XML and HTML.
Something like
(defun org-babel-support-lang (lang)
(defvar org-babel-default-header-[lang] nil)
(defun org-babel-execute:[lang] (body params)
etc ...)
Eric, what do you think?
--
Bastien
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Exporting xml and html code with syntax highlight
2012-08-31 6:13 ` Bastien
@ 2012-08-31 7:10 ` Charles Philip Chan
0 siblings, 0 replies; 3+ messages in thread
From: Charles Philip Chan @ 2012-08-31 7:10 UTC (permalink / raw)
To: Org-mode
[-- Attachment #1: Type: text/plain, Size: 461 bytes --]
Bastien <bzg@altern.org> writes:
Hi Bastien:
> Since the functions do strictly nothing, we should have a way to
> add them dynamically, without requiring a new ob-* file. This would
> be useless for languages you only want to tangle, like XML and HTML.
I totally agree with this.
Cheers,
Charles
--
The nice thing about Windows is - It does not just crash, it displays a
dialog box and lets you press 'OK' first.
(Arno Schaefer's .sig)
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-08-31 7:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-31 5:46 Exporting xml and html code with syntax highlight Charles Philip Chan
2012-08-31 6:13 ` Bastien
2012-08-31 7:10 ` Charles Philip Chan
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).