Warning/log messages aren't broken at the cell
The only remaining thing, and I don't even know that this is on your side @greenape , is that long warning/log messages do not line break at the cell, but instead run on to the right as long as they'd like to:
Let me know if you'd like to address as a different issue !
Originally posted by @eric-tramel in https://github.com/greenape/mknotebooks/issues/11#issuecomment-588102034
I think we can probably do something about that in the template. I'll have a look.
Quick fix in your custom CSS file:
/* Hide cell output overflow */
.output pre {
overflow: scroll;
}
@MasterScrat thanks a ton for the tip. This works well. I might offer a slight modification, so that we only get a scrollbar when overflow actually happens:
/* Hide cell output overflow */
.output pre {
overflow: auto;
}