<div class="markdown">
<p>On 13 Dec 2013, at 20:24, Gustavo Daniel Villarreal wrote: </p>

<blockquote>
<p>On 13 Dec 2013, at 19:19, Rob McClure wrote: </p>

<blockquote>
<p>** this should be next level indent I thought </p>
</blockquote>

<p>Its actually [space]* for one indent level, and [space][space]* for two indent levels (further indentation levels are not supported): </p>
</blockquote>

<p>The nice thing about standards… </p>

<p>The <a href="http://daringfireball.net/projects/markdown/syntax#list">official markdown docs</a> say that indentation is 4 spaces or one tab. Of course they don’t specifically stay that about <em>lists</em>, but in general reference to indentation for things. </p>

<p>E.g. </p>

<ul>
<li>Level 1</li>
<li>Still level 1</li>
<li>Still level 1</li>
<li>Still level 1

<ul>
<li>Now level 2</li>
<li>Also level 2 (tab)</li>
</ul></li>
</ul>

<pre><code>* Level 1  
 * Still level 1  
  * Still level 1  
   * Still level 1  
    * Now level 2 (4 spaces)  
    * Also level 2 (tab)  
</code></pre>

<p>It’s possible that the processor that MailMate is using is loser with that spec, since it’s trying to capture intent in email from people who aren’t really thinking about markdown. I’m using MultiMarkdown for my processing. </p>

</div>