From mboxrd@z Thu Jan 1 00:00:00 1970 From: "David A. Gershman" Subject: Inline HTML? Date: Tue, 20 Sep 2016 17:28:52 -0700 Message-ID: <3f70e57d-f491-545d-fa97-177ec660ebad@dagertech.net> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="------------890F0351695633293C1A79A1" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33539) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmVPJ-0003yH-3l for emacs-orgmode@gnu.org; Tue, 20 Sep 2016 20:29:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bmVPF-0005ZO-45 for emacs-orgmode@gnu.org; Tue, 20 Sep 2016 20:29:01 -0400 Received: from dagertech.net ([64.183.98.170]:47104 helo=mail.dagertech.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmVPE-0005YG-Tk for emacs-orgmode@gnu.org; Tue, 20 Sep 2016 20:28:57 -0400 Received: from [192.168.133.106] (unknown [192.168.176.200]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.dagertech.net (Postfix) with ESMTPSA id 203DFA023C for ; Tue, 20 Sep 2016 17:28:55 -0700 (PDT) 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 This is a multi-part message in MIME format. --------------890F0351695633293C1A79A1 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit I'm struggling trying to get an .org file exported and showing how I typically structure my HTML results. At this point, I'm trying to figure out how to get a "
" inserted to force continuation on the next line. My org file has: This is line one. This is line two. but the HTML export makes them different paragraphs...which is what I utilize. However, a separate portion of my file has a long line and I do /not/ want a new paragraph, just to force a
: This is a long line for which I want to simply, at some point, start the rest on the next line. Not a separate paragraph. With Babel, we can do things like /src_perl{#code}/ for inline code execution, but what about substitutions like HTML where code isn't executed? TIA. --dag --------------890F0351695633293C1A79A1 Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: quoted-printable I'm struggling trying to get an .org file exported and showing how I typically structure my HTML results.=C2=A0 At this point, I'm trying = to figure out how to get a "<br>" inserted to force continuation on the next line.

My org file has:

=C2=A0=C2=A0=C2=A0 This is line one.
=C2=A0=C2=A0=C2=A0 This is line two.

but the HTML export makes them different paragraphs...which is what I utilize.=C2=A0 However, a separate portion of my file has a long li= ne and I do not want a new paragraph, just to force a <br>:

=C2=A0=C2=A0=C2=A0 This is a long line for which I want to simply, at= some point,
=C2=A0=C2=A0=C2=A0 start the rest on the next line.=C2=A0 Not a separ= ate paragraph.

With Babel, we can do things like src_perl{#code} for inline code execution, but what about substitutions like HTML where code isn't executed?

TIA.

--dag
--------------890F0351695633293C1A79A1-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: "David A. Gershman" Subject: Re: Inline HTML? Date: Tue, 20 Sep 2016 17:37:53 -0700 Message-ID: <5af5c33e-1c05-76ef-5e61-b4221047d0dd@dagertech.net> References: <3f70e57d-f491-545d-fa97-177ec660ebad@dagertech.net> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="------------16A9F8AB616B71B14E579649" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35657) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmVXx-0000D5-5t for emacs-orgmode@gnu.org; Tue, 20 Sep 2016 20:37:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bmVXt-0001gq-GJ for emacs-orgmode@gnu.org; Tue, 20 Sep 2016 20:37:56 -0400 Received: from dagertech.net ([64.183.98.170]:47106 helo=mail.dagertech.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmVXt-0001gF-6z for emacs-orgmode@gnu.org; Tue, 20 Sep 2016 20:37:53 -0400 Received: from [192.168.133.106] (unknown [192.168.176.200]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.dagertech.net (Postfix) with ESMTPSA id C59BCA023C for ; Tue, 20 Sep 2016 17:37:51 -0700 (PDT) In-Reply-To: <3f70e57d-f491-545d-fa97-177ec660ebad@dagertech.net> 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 This is a multi-part message in MIME format. --------------16A9F8AB616B71B14E579649 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Finally! Found the answer in 12.6.5 of the manual: Here is line the long line */@@html:
@@ /*I had tried the '@@' but did not put the "html:". Hope this helps someone else. --dag On 09/20/2016 05:28 PM, David A. Gershman wrote: > I'm struggling trying to get an .org file exported and showing how I > typically structure my HTML results. At this point, I'm trying to > figure out how to get a "
" inserted to force continuation on the > next line. > > My org file has: > > This is line one. > This is line two. > > but the HTML export makes them different paragraphs...which is what I > utilize. However, a separate portion of my file has a long line and I > do /not/ want a new paragraph, just to force a
: > > This is a long line for which I want to simply, at some point, > start the rest on the next line. Not a separate paragraph. > > With Babel, we can do things like /src_perl{#code}/ for inline code > execution, but what about substitutions like HTML where code isn't > executed? > > TIA. > > --dag --------------16A9F8AB616B71B14E579649 Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: quoted-printable Finally!=C2=A0 Found the answer in 12.6.5 of the manual:

=C2=A0=C2=A0=C2=A0 Here is line the long line @@html:<br>= @@

I had tried the '@@' but did not put the "html:".=C2=A0 Hop= e this helps someone else.

--dag

On 09/20/2016 05:28 PM, David A. Gershman wrote:
I'm struggling trying to get an .org file exported and showing how I typically structure my HTML results.=C2=A0 At this point, I'm try= ing to figure out how to get a "<br>" inserted to force continuation on the next line.

My org file has:

=C2=A0=C2=A0=C2=A0 This is line one.
=C2=A0=C2=A0=C2=A0 This is line two.

but the HTML export makes them different paragraphs...which is what I utilize.=C2=A0 However, a separate portion of my file has a = long line and I do not want a new paragraph, just to force a <br>:

=C2=A0=C2=A0=C2=A0 This is a long line for which I want to simply, = at some point,
=C2=A0=C2=A0=C2=A0 start the rest on the next line.=C2=A0 Not a sep= arate paragraph.

With Babel, we can do things like src_perl{#code} for inline code execution, but what about substitutions like HTML where code isn't executed?

TIA.

--dag

--------------16A9F8AB616B71B14E579649-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adam Porter Subject: Re: Inline HTML? Date: Tue, 20 Sep 2016 19:44:20 -0500 Message-ID: <877fa6nkt7.fsf@alphapapa.net> References: <3f70e57d-f491-545d-fa97-177ec660ebad@dagertech.net> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36651) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmVeU-0003hT-3J for emacs-orgmode@gnu.org; Tue, 20 Sep 2016 20:44:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bmVeQ-00056v-09 for emacs-orgmode@gnu.org; Tue, 20 Sep 2016 20:44:41 -0400 Received: from [195.159.176.226] (port=42653 helo=blaine.gmane.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmVeP-00055A-Or for emacs-orgmode@gnu.org; Tue, 20 Sep 2016 20:44:37 -0400 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1bmVeI-00030H-LD for emacs-orgmode@gnu.org; Wed, 21 Sep 2016 02:44:30 +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" To: emacs-orgmode@gnu.org This may be what you're looking for: http://orgmode.org/manual/Quoting-HTML-tags.html From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christian Moe Subject: Re: Inline HTML? Date: Wed, 21 Sep 2016 09:15:46 +0200 Message-ID: References: <3f70e57d-f491-545d-fa97-177ec660ebad@dagertech.net> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58699) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmbl8-0000nV-0l for emacs-orgmode@gnu.org; Wed, 21 Sep 2016 03:15:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bmbl4-0005GD-2y for emacs-orgmode@gnu.org; Wed, 21 Sep 2016 03:15:57 -0400 Received: from mail2.b1.hitrost.net ([91.185.211.205]:51913) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmbl3-0005Dt-SU for emacs-orgmode@gnu.org; Wed, 21 Sep 2016 03:15:54 -0400 In-reply-to: <3f70e57d-f491-545d-fa97-177ec660ebad@dagertech.net> 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: "David A. Gershman" Cc: emacs-orgmode@gnu.org David A. Gershman writes: > My org file has: > > This is line one. > This is line two. > > but the HTML export makes them different paragraphs... Does it? If they're not separated by a blank line, the exporter should run them together into one paragraph. Mine does. > However, a separate portion of my file has a long line and I > do /not/ want a new paragraph, just to force a
: Quoting HTML is one solution (as you've already discovered), but more simply, you could do: This long line starts here \\ and continues here. Yours, Christian From mboxrd@z Thu Jan 1 00:00:00 1970 From: "David A. Gershman" Subject: Re: Inline HTML? Date: Wed, 21 Sep 2016 07:08:35 -0700 Message-ID: <1a572f0b-b727-a2fa-9c6d-80e0c3a77d0c@dagertech.net> References: <3f70e57d-f491-545d-fa97-177ec660ebad@dagertech.net> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47739) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmiCY-0005qh-Be for emacs-orgmode@gnu.org; Wed, 21 Sep 2016 10:08:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bmiCV-0008FO-48 for emacs-orgmode@gnu.org; Wed, 21 Sep 2016 10:08:42 -0400 Received: from dagertech.net ([64.183.98.170]:47180 helo=mail.dagertech.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmiCU-0008F2-Tc for emacs-orgmode@gnu.org; Wed, 21 Sep 2016 10:08:39 -0400 Received: from [192.168.133.106] (unknown [192.168.176.200]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.dagertech.net (Postfix) with ESMTPSA id E6EA7A0209 for ; Wed, 21 Sep 2016 07:08:36 -0700 (PDT) In-Reply-To: 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 On 09/21/2016 12:15 AM, Christian Moe wrote: > David A. Gershman writes: > > >> My org file has: >> >> This is line one. >> This is line two. >> >> but the HTML export makes them different paragraphs... > Does it? If they're not separated by a blank line, the exporter should run them > together into one paragraph. Mine does. Yes, you're correct. My apologies, I misspoke. > >> However, a separate portion of my file has a long line and I >> do /not/ want a new paragraph, just to force a
: > Quoting HTML is one solution (as you've already discovered), but more > simply, you could do: > > > This long line starts here \\ > and continues here. > > > Yours, > Christian > Nice! Thank you! That's much cleaner! --dag