If you look at a plain text file in Safari on an iPad or iPhone you'll see it gets word-wrapped. This is fine when faced with a lot of ordinary text, but if it's monospaced - tables, ASCII art or whatever, then it's a pain. Here's an example.
We'd like to be able to fix this, and we can:
javascript:{p=document.getElementsByTagName("pre")[0].style;p.whiteSpace='pre';p.wordWrap='normal'}
If you're having trouble selecting this try highlighting it and dragging to the space to the right
Tada!
Before