eg:
```
some very long line; some very long line; some very long line; some very long line; some very long line; some very long line; some very long line; some very long line; some very long line; some very long line;
```
will force user to scroll in github/gitlab issues.
Is there a way to soft-line wrap inside code block
?
I've read the related questions but they seem different (eg jekyll etc).
EDIT: manually editing code to limit to 80 columns is not a viable option (eg, when pasting from a compiler output/log etc; that's a lot of work and should not be necessary)
Add below CSS in your output HTML file or edit it in the linked CSS
code {
white-space : pre-wrap !important;
}