From mboxrd@z Thu Jan 1 00:00:00 1970 From: Benjamin Beckwith Subject: Re: Re: How to customize the org-mode's BEGIN_SRC HTML output Date: Wed, 25 Aug 2010 10:49:40 -0400 Message-ID: References: <87hbijumal.wl%ucecesf@ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from [140.186.70.92] (port=35033 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OoHLS-0002yj-EU for emacs-orgmode@gnu.org; Wed, 25 Aug 2010 10:52:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OoHIO-0005F2-0a for emacs-orgmode@gnu.org; Wed, 25 Aug 2010 10:49:45 -0400 Received: from mail-qy0-f176.google.com ([209.85.216.176]:48002) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OoHIN-0005C4-Ua for emacs-orgmode@gnu.org; Wed, 25 Aug 2010 10:49:43 -0400 Received: by qyk2 with SMTP id 2so682993qyk.0 for ; Wed, 25 Aug 2010 07:49:43 -0700 (PDT) In-Reply-To: <87hbijumal.wl%ucecesf@ucl.ac.uk> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Eric S Fraga , emacs-orgmode@gnu.org Eric, I should mention that I am using the "Syntaxhighlighter Evolved" plugin for Wordpress. It allows shortcodes with just the language name. I probably should use the [sourcecode lang="..."] variant instead. Maybe that is why my version did not work for you? My latest page created with my code can be found at: http://bnbeckwith.com/index.php/writegood-mode/ As for the linebreaks, in my haste to share I forgot that I was advising the org2blog-strip-newlines function. Which effectively keeps all line breaks. ------------------------------ (defadvice org2blog-strip-new-lines (around bnb/org2blog-disable-newline-removal) "Disables the function the removes newlines from the generated HTML" (setq ad-return-value (ad-get-arg 0))) ------------------------------