aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2010-03-25 13:20:15 -0400
committerWaylan Limberg <waylan@gmail.com>2010-03-25 13:20:15 -0400
commitbd926140e0b4005fc082f12f7c119498ced420a2 (patch)
treefe47bd38ce44e65822277123e9df13263d658170 /tests
parent3c5a355edd62efb8642b71b28cd39f7f8f2b3dc6 (diff)
downloadmarkdown-bd926140e0b4005fc082f12f7c119498ced420a2.tar.gz
markdown-bd926140e0b4005fc082f12f7c119498ced420a2.tar.bz2
markdown-bd926140e0b4005fc082f12f7c119498ced420a2.zip
Changed the default style used by pygments in the codehilite extension. This was a recently added feature, but older versions of pygments don't know what the 'tango' style is, so we now use pygemnts 'default' by default. Not sure why the 'tango' style was used here in the first place. I'm guess it was the preferance of whoever contributed the patch.
Diffstat (limited to 'tests')
-rw-r--r--tests/extensions/codehilite.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/extensions/codehilite.html b/tests/extensions/codehilite.html
index 366682e..6a8ee91 100644
--- a/tests/extensions/codehilite.html
+++ b/tests/extensions/codehilite.html
@@ -1,10 +1,10 @@
<p>Some text</p>
-<table class="codehilitetable"><tr><td class="linenos"><div class="linenodiv"><pre>1
+<table class="codehilitetable"><tr><td class="linenos"><pre>1
2
3
4
5
-6</pre></div></td><td class="code"><div class="codehilite"><pre><span class="k">def</span> <span class="nf">__init__</span> <span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">pattern</span><span class="p">)</span> <span class="p">:</span>
+6</pre></td><td class="code"><div class="codehilite"><pre><span class="k">def</span> <span class="nf">__init__</span> <span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">pattern</span><span class="p">)</span> <span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">pattern</span> <span class="o">=</span> <span class="n">pattern</span>
<span class="bp">self</span><span class="o">.</span><span class="n">compiled_re</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="s">&quot;^(.*)</span><span class="si">%s</span><span class="s">(.*)$&quot;</span> <span class="o">%</span> <span class="n">pattern</span><span class="p">,</span> <span class="n">re</span><span class="o">.</span><span class="n">DOTALL</span><span class="p">)</span>