<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Patrick R. Michaud wrote:
<blockquote cite="mid20050726135457.GK15360@host.pmichaud.com"
 type="cite">
  <pre wrap="">On Mon, Jul 25, 2005 at 11:18:38PM -0400, DaveG wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">   Still not sure what's happening in this case:
   # Line 1 \\
   Attach:abc.jpg \\
   # Line 2
    </pre>
  </blockquote>
  <pre wrap=""><!---->
A backslash at the end of a line "joins" the subsequent line to the
previous one.  Extra backslashes introduce line breaks.  So, the
two slashes after the image above cause # Line 2 to be treated as
a continuation of Line 1, which isn't what you want.
  </pre>
</blockquote>
Not sure your description is totally accurate. The \\ joins the
subsequent line, but is primarily used when you want a styling affect
to carry from the first to the second line, rather than to merely merge
to lines. If you simply enter a single carriage return, the lines join
together, no \\ required:<br>
abc<br>
def<br>
<br>
Results in:<br>
abc def<br>
<br>
This is confusing, particularly with images:<br>
abc<br>
Attach:image.jpg<br>
<br>
Results in:<br>
abc &lt;image&gt;<br>
<br>
rather than:<br>
abc<br>
&lt;image&gt;<br>
<br>
To get the affect with no blank line output, we need to:<br>
abc\\\<br>
Attach:image.jpg<br>
<br>
Newbie members at my site frequently hit a single cr at the end of a
line, only to have it join back to the originating line. Why not just
do a &lt;br&gt; on a single cr, and use the \\ to span styles over
lines, and thus eliminate \\\? I suspect there's plenty of history I'm
missing here... :)<br>
<br>
&nbsp;~ ~ Dave<br>
<blockquote cite="mid20050726135457.GK15360@host.pmichaud.com"
 type="cite">
  <pre wrap="">
As you already discovered; the general mechanism to get a blank line 
in the output is to put a blank line in the input.  :-)
  </pre>
</blockquote>
This makes sense... except for the examples above!<br>
<br>
</body>
</html>