<div class="markdown">
<p dir="auto">Hi,</p>

<p dir="auto">I think the code styling feature that was introduced <a href="https://lists.freron.com/mailmate/2015-August/004701.html">here</a> is still experimental, but I was just wondering if anyone else was having this same problem. Whenever I try to use syntax highlighting, everything is wrapped onto one line.</p>

<p dir="auto">For example, if I type:</p>

<pre><code>```bash

if [ -f $HOME/.profile ]; then
    source $HOME/.profile
fi


if [ -f $HOME/.bashrc ]; then
    source $HOME/.bashrc
fi

```
</code></pre>

<p dir="auto">Then I get the following (with everything on one line):</p>

<span style="color: #008800; font-weight: bold">if</span> <span style="color: #333333">[</span> -f <span style="color: #996633">$HOME</span>/.profile <span style="color: #333333">]</span>; <span style="color: #008800; font-weight: bold">then</span>
    <span style="color: #007020">source</span> <span style="color: #996633">$HOME</span>/.profile
<span style="color: #008800; font-weight: bold">fi</span>


<span style="color: #008800; font-weight: bold">if</span> <span style="color: #333333">[</span> -f <span style="color: #996633">$HOME</span>/.bashrc <span style="color: #333333">]</span>; <span style="color: #008800; font-weight: bold">then</span>
    <span style="color: #007020">source</span> <span style="color: #996633">$HOME</span>/.bashrc
<span style="color: #008800; font-weight: bold">fi</span>



<p dir="auto">Is anyone else having this problem?</p>

<p dir="auto">Thanks!</p>

<p dir="auto">-Adam Liter</p>

</div>