does anyone know how to have IDLE or Ipython display a string with line breaks as multiline text in the display rather than a big string wrapped around with '\n's?
Instead of
return false;\n }\n\n function validPeriod() {\n for (var i = 0; i < periods.length; i++) {\n
can I have it display:
return false;
}
function validPeriod() {
for (var i = 0; i < periods.length; i++) {