Please consider adding an option for text wrapping inside the code elements. I think it will make, for example, long commands more readable and copyable. I think it might be done by adding following styles:
word-wrap: break-word;
white-space: pre-wrap;
refs: #570
with custom CSS, according to @jsnjack answer, I solved this problem.
code{
word-wrap: break-word;
white-space: pre-wrap;
}
Most helpful comment
with custom CSS, according to @jsnjack answer, I solved this problem.