-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
Description
When I use the default CSS, using the Stylus extension, the lines are not wrapped, but after editing:
body:not(.nowrap) .blob-code-inner,
body:not(.nowrap) .markdown-body pre > code,
body:not(.nowrap) .markdown-body .highlight > pre {
white-space: pre-wrap !important;
word-break: break-all !important;
overflow-wrap: break-word !important;
display: block !important;
}
To:
body:not(.nowrap) .blob-code-inner,
body:not(.nowrap) .markdown-body pre > code,
body:not(.nowrap) .markdown-body .highlight > pre {
white-space: pre-line !important;
word-break: break-all !important;
overflow-wrap: break-word !important;
display: block !important;
}
Word wrapping occurs correctly
- Browser: Firefox 107.0.1 (64-bit)
- Operating System: Windows 10 Home [Version: 21H2]
- Link to page with the issue: https://github.com/charlesr1971/cfspreadsheet-lucee-5/blob/master/lar/org/cfpoi/spreadsheet/Spreadsheet.cfc
- Screenshot:
krystian3w