From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: [odt] htmlfontify + Support for src blockfontification Date: Fri, 19 Aug 2011 18:19:04 +0530 Message-ID: <81aab5k1mn.fsf@gmail.com> References: <81ty9i1kg5.fsf@gmail.com> <877h6cfk68.fsf@altern.org> <814o1elfkj.fsf@gmail.com> <87ei0hrgcz.fsf@altern.org> <81wre9yfmx.fsf@gmail.com> <87pqk1ohma.fsf@altern.org> <81liupk2of.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([140.186.70.92]:55334) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QuOWI-0006mv-Fm for emacs-orgmode@gnu.org; Fri, 19 Aug 2011 08:49:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QuOWH-00010j-7P for emacs-orgmode@gnu.org; Fri, 19 Aug 2011 08:49:54 -0400 Received: from mail-pz0-f44.google.com ([209.85.210.44]:41558) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QuOWH-00010d-0l for emacs-orgmode@gnu.org; Fri, 19 Aug 2011 08:49:53 -0400 Received: by pzk36 with SMTP id 36so5721486pzk.17 for ; Fri, 19 Aug 2011 05:49:52 -0700 (PDT) In-Reply-To: <81liupk2of.fsf@gmail.com> (Jambunathan K.'s message of "Fri, 19 Aug 2011 17:56:24 +0530") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Jambunathan K writes: >> Hi Jambunathan, >> >> we are discussing in abstract terms, and that might distract us from >> DTRT together: can you show the patched version of htmlfontify.el? > > Here you go. > > Patch numbered 1 is the base htmlfontify.el (same as that in emacs-24 > trunk). I am also attaching a final copy of htmlfontify.el after it has > gone through the series of 5 patches. Sample test.org file to quickly understand the nature of changes. A line by line comparison will show how patches add up. > Jambunathan K. -- --=-=-= Content-Type: text/x-org Content-Disposition: attachment; filename=test.org * Example 1 #+begin_src emacs-lisp ;; This is how one changes load-path (setq load-path (cons "~/elisp" load-path)) #+end_src * COMMENT This is how ODT output looks like #+begin_src nxml ;;Thisishowonechangesload-path (setqload-path(cons"~/elisp"load-path)) #+end_src * COMMENT This how the HTML output looks like #+begin_src nxml
;; This is how one changes load-path
  (setq load-path (cons "~/elisp" load-path))
#+end_src --=-=-=--