I found a lovely Greasemonkey script ("pre select") for copying the contents of a pre block, but when I use it on code blocks on Stack Overflow it also grabs all the span elements used for syntax highlighting. Is there any way to remove said highlighting so that just the raw text can be copied?
For example:
im = Image.new("RGB", (300,300))
yields (without any line breaks):
<pre class="prettyprint"><code> <span class="pln">im </span><span class="pun">=</span><span class="pln"> </span> <span class="typ">Image</span><span class="pun">.</span> <span class="kwd">new</span><span class="pun">(</span> <span class="str">"RGB"</span><span class="pun">,</span> <span class="pln"> </span><span class="pun">(</span> <span class="lit">300</span><span class="pun">,</span> <span class="lit">300</span><span class="pun">))</span> </code></pre>
