From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: *bold*text Date: Sun, 14 Aug 2011 18:20:48 +0200 Message-ID: <87d3g89d77.fsf@altern.org> References: <4E22A556.3010202@online.de> <4E29C4BA.5090906@online.de> <87sjpts1cm.fsf@gnu.org> <4E2F12C3.6040502@online.de> <87oc0e6d5n.fsf@altern.org> <4E47E321.7040505@online.de> <4E47E835.7090902@ymail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:56506) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QsdQD-0003FX-5X for emacs-orgmode@gnu.org; Sun, 14 Aug 2011 12:20:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QsdQB-0005PE-ER for emacs-orgmode@gnu.org; Sun, 14 Aug 2011 12:20:21 -0400 Received: from mail-ww0-f49.google.com ([74.125.82.49]:43673) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QsdQB-0005OB-A0 for emacs-orgmode@gnu.org; Sun, 14 Aug 2011 12:20:19 -0400 Received: by mail-ww0-f49.google.com with SMTP id 10so3383126wwf.30 for ; Sun, 14 Aug 2011 09:20:19 -0700 (PDT) In-Reply-To: <4E47E835.7090902@ymail.com> (iminet@ymail.com's message of "Sun, 14 Aug 2011 17:22:29 +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: "iminet@ymail.com" Cc: emacs-orgmode@gnu.org Hi, "iminet@ymail.com" writes: > *bold*text or /italic/text doesn't work unless you seperate those words. > You can work it around with @foo@bar but that'd neither be generic > nor work on multiple export-backends. > > It'd be great if that'd work =) See the docstring of `org-emphasis-regexp-components': ,---- | Components used to build the regular expression for emphasis. | This is a list with five entries. Terminology: In an emphasis string | like " *strong word* ", we call the initial space PREMATCH, the final | space POSTMATCH, the stars MARKERS, "s" and "d" are BORDER characters | and "trong wor" is the body. The different components in this variable | specify what is allowed/forbidden in each part: | | pre Chars allowed as prematch. Beginning of line will be allowed too. | post Chars allowed as postmatch. End of line will be allowed too. | border The chars *forbidden* as border characters. | body-regexp A regexp like "." to match a body character. Don't use | non-shy groups here, and don't allow newline here. | newline The maximum number of newlines allowed in an emphasis exp. `---- HTH, -- Bastien