From mboxrd@z Thu Jan 1 00:00:00 1970 From: thomas Subject: make code lines bold in export Date: Wed, 08 Apr 2015 14:01:15 +0200 Message-ID: <5525188B.6040308@friendlyvillagers.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38077) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yfofb-0006E7-6h for emacs-orgmode@gnu.org; Wed, 08 Apr 2015 08:01:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YfofW-0006dX-UG for emacs-orgmode@gnu.org; Wed, 08 Apr 2015 08:01:23 -0400 Received: from mo6-p00-ob.smtp.rzone.de ([2a01:238:20a:202:5300::12]:64604) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YfofW-0006dI-KP for emacs-orgmode@gnu.org; Wed, 08 Apr 2015 08:01:18 -0400 Received: from [192.168.178.20] (p5496687A.dip0.t-ipconnect.de [84.150.104.122]) by smtp.strato.de (RZmta 37.5 DYNA|AUTH) with ESMTPSA id C00b1br38C1FDZz (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA (curve secp521r1 with 521 ECDH bits, eq. 15360 bits RSA)) (Client did not present a certificate) for ; Wed, 8 Apr 2015 14:01:15 +0200 (CEST) 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 Hi, it would be very nice if i was able to highlight (i.e. make bold) certain lines in an exported code, say ODT. Something like this: #+BEGIN_SRC java public class HelloActivity extends Activity { /** Called when the activity is first created */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // *MAKE THIS LINE BOLD* } } #+END_SRC Is there an - easy - way to do this? My first guess: I need to write an export filter ... what would you think? Thanks, thomas