From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Abrahamsen Subject: Re: force italic mode? Date: Thu, 17 Nov 2016 08:39:06 -0800 Message-ID: <87bmxet61h.fsf@ericabrahamsen.net> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44807) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c7Piz-0001sd-C1 for emacs-orgmode@gnu.org; Thu, 17 Nov 2016 11:39:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c7Piw-0003oq-9z for emacs-orgmode@gnu.org; Thu, 17 Nov 2016 11:39:45 -0500 Received: from [195.159.176.226] (port=47489 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1c7Piw-0003oV-3C for emacs-orgmode@gnu.org; Thu, 17 Nov 2016 11:39:42 -0500 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1c7Pik-00046F-1k for emacs-orgmode@gnu.org; Thu, 17 Nov 2016 17:39:30 +0100 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" To: emacs-orgmode@gnu.org hymie! writes: > Greetings. > > (My first question is, can I post from gmane?) > > I know how to make text italic by /surrounding/ it with /slashes/. > > I know that there's a variable (org-emphasis-regex-components) that > specifies what characters are allowed before or after the markup > characters. > > But let's say I don't want to mess with my document defaults. I just > want to specify, in this one particular place, that I have the word > > fuzzywuzzywuzzabear > > and I want "wuzzy" to be italic. Is there a way I can do that? You haven't actually said why you can't just write /fuzzywuzzywuzzabear/, but presumably there's some reason that won't work. You might consider literal export snippets, though then you'd need to target each different backend you're exporting to. So you could do: @@html:@@fuzzywuzzywuzzabear@@html:@@ For instance. Is that what you meant?