No syntax highlighting here?

If anyone is interested in some CSS’ing, it’s all a matter of themeing. I’m always happy to take suggestions on this — see, e.g., Adding support for `julia-repl` syntax highlighting - #7 by g-gundam.

julia> if a<1.2 || b=="s" && c in Dict(:a=>'f'); 1::Int end

The highlights.js library puts these classes on the above:

<span class="hljs-meta prompt_">julia&gt;</span>
<span class="language-julia">
    <span class="hljs-keyword">if</span>
    a&lt;
    <span class="hljs-number">1.2</span>
    || b==
    <span class="hljs-string">"s"</span>
    &amp;&amp; c 
    <span class="hljs-keyword">in</span>
    <span class="hljs-built_in">Dict</span>
    (:a=&gt;
    <span class="hljs-string">'f'</span>
    ); 
    <span class="hljs-number">1</span>
    ::
    <span class="hljs-built_in">Int</span>
    <span class="hljs-keyword">end</span>
</span>

The HTML highlighting is much more colorful as its markup is so standard that it tags pretty much everything, including things that don’t make much sense in Julia’s syntax (e.g., tags, names, attrs, etc).