From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: block quotes in prose? Date: Sat, 23 Feb 2013 10:54:26 +0100 Message-ID: <87wqtz2tn9.fsf@bzg.ath.cx> References: <87liaug81s.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:42456) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U9Cke-0007ui-Js for emacs-orgmode@gnu.org; Sat, 23 Feb 2013 05:54:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U9CkY-0001xd-VN for emacs-orgmode@gnu.org; Sat, 23 Feb 2013 05:54:44 -0500 Received: from mail-wg0-f48.google.com ([74.125.82.48]:43855) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U9CkY-0001xW-P5 for emacs-orgmode@gnu.org; Sat, 23 Feb 2013 05:54:38 -0500 Received: by mail-wg0-f48.google.com with SMTP id 16so1151017wgi.3 for ; Sat, 23 Feb 2013 02:54:38 -0800 (PST) In-Reply-To: (Peter Salazar's message of "Sat, 16 Feb 2013 15:27:47 -0500") 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: Peter Salazar Cc: org-mode Hi Peter, Peter Salazar writes: > What about John Hendy's suggestion of finding a face I like, and then > adding "^> text..." to the list of things org fontifies with that > style? ('In other words, add "^> text" regexp to the existing hunt > for lines that start with #+ in order to get src code fontification > applied.')  > > Is this feasible? Use this somewhere in your configuration: (font-lock-add-keywords 'org-mode '(("^\\(:+\\) " 1 (compose-region (match-beginning 1) (match-end 1) ?> ) nil))) M-x org-mode RET in an org-mode buffer if you evaluate this sexp after you visited the file, otherwise the change will not be visible. HTH, -- Bastien