<div class="markdown">
<p dir="auto">On 26 Nov 2013, at 14:49, Jason Davies wrote:</p>

<blockquote>
<p dir="auto">Am I missing something? I thought this markdown input</p>

<ol>
<li value=1>item 1</li>
<li value=6>item 2</li>
<li value=1>item 3</li>
</ol>

<p dir="auto">would produce, when formatted,</p>

<ol>
<li value=1>item 1</li>
<li value=2>item 2</li>
<li value=3>item 3</li>
</ol>

<p dir="auto">but it never seems to work here...</p>
</blockquote>

<p dir="auto">It's on purpose and it's a good example of how MailMate uses Markdown (which is different than most other email clients I suspect).</p>

<p dir="auto">Background info: A typical rich text message has two body parts as subparts of a so-called <code>multipart/alternative</code> (MIME) body part. One body part is plain text and one body part is HTML. The receiving email client can show either of these. By default MailMate shows HTML, but this can be changed in the Viewer preferences pane. Some receiving email clients can only show plain text.</p>

<p dir="auto">In MailMate, the plain text body part is the raw Markdown text and this is naturally a problem if lists are renumbered. The current solution is to not do renumbering such that this fact is not hidden from the user. A better solution might be to implement a Markdown to Markdown conversion, also for other reasons…</p>

<p dir="auto">-- <br>
Benny</p>

</div>