I am working on responsive html email without media query and need to insert some mso condition. However, I am not sure how can I convert this into HAML?
<!--[if (gte mso 9)|(IE)]>
<table class="outlook-wrapper">
<tr>
<td>
<![endif]-->
<table class="email-body">
// Some email content ..
</table>
<!--[if (gte mso 9)|(IE)]>
</td>
</tr>
</table>
<![endif]-->
How do i force haml to leave the tag open for my outlook wrapper? So I can close it myself after email-body table.