We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 69c359f + 1717303 commit a9b3b42Copy full SHA for a9b3b42
scripts/templates/program_page.html
@@ -5,7 +5,18 @@
5
<title>Program {{ program_data.id }}</title>
6
<style>
7
body { font-family: Arial, sans-serif; padding: 20px; }
8
- pre { background: #f0f0f0; padding: 10px; border-radius: 5px; }
+ /* Text wrapping for <pre> elements */
9
+ pre {
10
+ background: #f0f0f0;
11
+ padding: 10px;
12
+ border-radius: 5px;
13
+ white-space: pre-wrap; /* Preserve formatting, allow wrapping */
14
+ overflow-wrap: break-word; /* Break long words */
15
+ }
16
+ /* Text wrapping for list elements */
17
+ li {
18
+ overflow-wrap: break-word;
19
20
</style>
21
</head>
22
<body>
0 commit comments