For example, when I conver the following page: https://developers.google.com/edu/python/strings
s = 'hi'
print s[1] ## i
print len(s) ## 2
print s + ' there' ## hi there
becomes
.. code:: prettyprint
s = 'hi' print s[1] ## i print len(s) ## 2 print s + ' there' ## hi there
This is because there is a tag on the pre block: <pre class=prettyprint>
How can I make pandoc to print out the codeblock with proper space? --no-highlight
didn't do anything it seems.