;;; emacs-wiki-mathml.el --- Provide MathML support for emacs-wiki ;; Copyright (C) 2004 Li Daobing ;; Copyright (C) 2004 Michael Olson ;; Emacs Lisp Archive Entry ;; Filename: emacs-wiki-menu.el ;; Keywords: emacs-wiki mathml hypermedia ;; Author: Li Daobing (lidaobing AT gmail DOT com) ;; Maintainer: Michael Olson (mwolson AT gnu DOT org) ;; Description: Provide MathML support for emacs-wiki ;; URL: http://www.mwolson.org/projects/EmacsWiki.html ;; Compatibility: Emacs20, Emacs21, XEmacs21 ;; This file is not part of GNU Emacs. ;; This 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 2, or (at your option) ;; any later version. ;; ;; This 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; see the file COPYING. If not, write to the ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ;; Boston, MA 02110-1301, USA. ;;;_* Commentary ;;;_ + Startup ;; 1. Get a copy of itex2MML and install it to `/usr/bin' or ;; `/usr/local/bin'. ;; ;; You can get a copy from ;; `http://pear.math.pitt.edu/mathzilla/itex2mml.tar.gz'. ;; ;; 2. Copy `itex2MML.py' to `/usr/bin' or `/usr/local/bin', if you ;; do not have this file, create it and do a `chmod a+x itex2MML.py'. ;; Its content is the following. ;; ;; #!/usr/bin/env python ;; """A wrap for itex2MML ;; ;; Delete the extra blank line. ;; ;; You can use it as itex2MML. ;; ;; For example: ;; ;; echo '$a_b$' | itex2MML.py ;; """ ;; ;; import sys ;; import os ;; ;; def main(): ;; fin, fo = os.popen2('itex2MML') ;; fin.write(sys.stdin.read()) ;; fin.close() ;; for line in fo: ;; line = line.strip() ;; if line: ;; print line ;; ;; if __name__ == '__main__': ;; main() ;; ;; 3. Put the `emacs-wiki-math.el' into your `load-path'. ;; ;; 4. Add the following to your .emacs file. ;; ;; (require 'emacs-wiki-mathml) (require 'emacs-wiki) (defun emacs-wiki-publishing-xml-encoding () "Set encoding of this file to `emacs-wiki-publishing-xml-encoding'." (if (stringp emacs-wiki-meta-content-coding) emacs-wiki-meta-content-coding (emacs-wiki-transform-content-type (or buffer-file-coding-system emacs-wiki-coding-default)))) ;;; TODO: Rewrite this for Muse. ;; (setq emacs-wiki-publishing-header ;; "(emacs-wiki-publishing-xml-encoding)\"?> ;; ;; ;;
;;|
;; |
;;
;;
;; |
;;
;; |
;;