Commit e00b408fe5d27630b4052c29da86f5ae33b9258f

mAAdhaTTah 2018-06-26T11:32:31

Remove extraneous class

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/examples/prism-python.html b/examples/prism-python.html
index 3309732..ca7a397 100644
--- a/examples/prism-python.html
+++ b/examples/prism-python.html
@@ -58,7 +58,7 @@ if __name__ == '__main__':
 </p>
 
 <h3>Triple-quoted strings with what look like strings inside</h3>
-<pre class="language-python"><code>def antique(string):
+<pre><code>def antique(string):
     """Replace anachronistic Latin "j" with "i"."""
     return string.replace("j", "i").replace("J", "I")
     </code></pre>