From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Abrahamsen Subject: Re: Emphasizing multiple lines Date: Thu, 05 Jun 2014 09:18:23 +0800 Message-ID: <87d2eo40io.fsf@ericabrahamsen.net> References: <66FD929C-0ABA-49B8-99D7-0C7103EFF1C9@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43310) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WsMGp-00009S-Tn for emacs-orgmode@gnu.org; Wed, 04 Jun 2014 21:15:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WsMGi-0000er-Al for emacs-orgmode@gnu.org; Wed, 04 Jun 2014 21:15:07 -0400 Received: from plane.gmane.org ([80.91.229.3]:35441) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WsMGi-0000en-4D for emacs-orgmode@gnu.org; Wed, 04 Jun 2014 21:15:00 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WsMGh-0000R3-19 for emacs-orgmode@gnu.org; Thu, 05 Jun 2014 03:14:59 +0200 Received: from 222.128.167.179 ([222.128.167.179]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 05 Jun 2014 03:14:59 +0200 Received: from eric by 222.128.167.179 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 05 Jun 2014 03:14:59 +0200 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 Marvin Doyley writes: > Hi there, > > I am trying to figure out how to emphasize multiple lines. > > Below, I have included some random text to highlight what I would like to do. Check out the docstring for org-emphasis-regexp-components -- the fifth element determines how many newlines can be spanned by emphasis markers. For instance, I've got: (setf (nth 4 org-emphasis-regexp-components) 3) Hope that helps. E