In my DOM explorer, I see this turning into
<code class="haskell hljs">
<span class="hljs-pragma">{-# OPTIONS_GHC -Wall #-}</span>
euclid :: <span class="hljs-type">Int</span> -> <span class="hljs-type">Int</span> -> <span class="hljs-type">Int</span>
euclid a b
| a == <span class="hljs-number">0</span> = b
| b == <span class="hljs-number">0</span> = a
| a > b = euclid (a-b) b
| otherwise = euclid a (b-a)
</code>
These spans have the following rule from line 143 at http://tekkkz.com/css/style.css , which will ruin their size and placement. A disconnect that makes it look good to me.
.content span {
float: left;
padding-right: 50px;
}
source
share