From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Abrahamsen Subject: Re: Markup (blod for instance) over line breaks Date: Mon, 14 Oct 2013 13:11:59 +0800 Message-ID: <87vc10jv1c.fsf@ericabrahamsen.net> References: <903E805A-AF87-4B12-8A26-A19CBB4CAA93@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37677) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VVaQr-0000L8-OF for emacs-orgmode@gnu.org; Mon, 14 Oct 2013 01:11:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VVaQl-0006ZQ-Kh for emacs-orgmode@gnu.org; Mon, 14 Oct 2013 01:11:05 -0400 Received: from plane.gmane.org ([80.91.229.3]:47114) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VVaQl-0006ZG-EB for emacs-orgmode@gnu.org; Mon, 14 Oct 2013 01:10:59 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1VVaQj-0000nK-II for emacs-orgmode@gnu.org; Mon, 14 Oct 2013 07:10:57 +0200 Received: from 114.250.111.127 ([114.250.111.127]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Oct 2013 07:10:57 +0200 Received: from eric by 114.250.111.127 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Oct 2013 07:10:57 +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 Dror Atariah writes: > Dear org-moders, > > It might be terribly simple, but I failed to find a solution. How can > I mark several words as bold (or emphasized or any similar markup), > in particular if the words spans over *more then one line*? > > A similar problem can occur when one is pasting a long line into an > org-mode buffer and then, after it is being broken into shorter > lines, you try to make it bold. > > The documentation (http://orgmode.org/org.html#Emphasis-and-monospace > ) states that this kind of markup is aimed at words - so it might not > support sentences and in particula r long ones... Is it correct? > > Thanks in advance, > Dror I use autofill mode, and then change the value of `org-emphasis-regexp-components'. That variable is a list, the fifth element of which says how many newlines the emphasis markers will allow. I set it to three: (setf (nth 4 org-emphasis-regexp-components) 3) Hope that helps, Eric