How do i change the classes of the Pygments output? for example, this is the output of pygments default:
<div class="highlight">
<pre>
<span class="kn">import</span> <span class="nn">samplemodule</span>
<span class="nb">print</span><span class="p">(</span><span class="s1">'Hello World!'</span><span class="p">)</span>
</pre>
</div>
I want the output of the span elements to use the classes i provided. How do i do that?