On Mon, Mar 11, 2013 at 3:11 AM, Achim Gratz <strom...@nexgo.de> wrote: [snip]
> Nevertheless my suggestion to the Org community is to respect your wish > and move these two files to contrib... [snip] I have to say I think Achim is really on the right track, here. Also for those interested in a bit of historical irony check out the commit history of ox-html.el in black and white: http://orgmode.org/cgit.cgi/org-mode.git/log/lisp/ox-html.el http://orgmode.org/cgit.cgi/org-mode.git/log/contrib/lisp/org-e-html.el http://orgmode.org/cgit.cgi/org-mode.git/log/EXPERIMENTAL/org-e-html.el In particular, the following was committed by Jambunathan K on 2012-02-18 with commit message, "org-e-html: New HTML exporter - a first attempt". diff --git a/EXPERIMENTAL/org-e-html.el b/EXPERIMENTAL/org-e-html.el new file mode 100644 index 0000000..7079b5f --- a/dev/null +++ b/EXPERIMENTAL/org-e-html.el @@ -0,0 +1,4902 @@ +;;; org-e-html.el --- HTML Back-End For Org Export Engine + +;; Copyright (C) 2011-2012 Free Software Foundation, Inc. + +;; Author: Nicolas Goaziou <n.goaziou at gmail dot com> +;; Keywords: outlines, hypermedia, calendar, wp + +;; This program 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. + +;; This program 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. + -- Jay