Switch to side-by-side view

--- a/Allura/allura/tests/test_globals.py
+++ b/Allura/allura/tests/test_globals.py
@@ -206,6 +206,8 @@
 
 @with_setup(setUp)
 def test_markdown_links():
+    text = g.markdown.convert('See [18:13:49]')
+    assert 'See <span>[18:13:49]</span>' in text, text
     h.set_context('test', 'wiki', neighborhood='Projects')
     text = g.markdown.convert('Read [here](Home) about our project')
     assert '<a class="" href="/p/test/wiki/Home/">here</a>' in text, text