File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 516
516
const container = document . createElement ( 'div' ) ;
517
517
container . classList . add ( 'alert' , 'alert-danger' , 'mx-2' ) ;
518
518
container . innerHTML =
519
- 'Warning!! This problem uses the following deprecated macros:' +
519
+ '<p> Warning!! This problem uses the following deprecated macros:</p> ' +
520
520
'<ul class="mb-0">' +
521
521
data . deprecated_macros . reduce ( ( acc , item ) => `${ acc } <li>${ item } </li>` , '' ) +
522
- '</ul>If this is an OPL problem, please report this issue to the OPL. ' +
523
- 'If this is a custom problem, please update the problem to use modern macros.' ;
522
+ '</ul><p> If this is an OPL problem, please report this issue to the OPL. ' +
523
+ 'If this is a custom problem, please update the problem to use modern macros.</p> ' ;
524
524
iframe . after ( container ) ;
525
525
}
526
526
Original file line number Diff line number Diff line change 81
81
const container = document . createElement ( 'div' ) ;
82
82
container . classList . add ( 'alert' , 'alert-danger' ) ;
83
83
container . innerHTML =
84
- 'Warning!! This problem uses the following deprecated macros:' +
84
+ '<p> Warning!! This problem uses the following deprecated macros:</p> ' +
85
85
'<ul class="mb-0">' +
86
86
data . deprecated_macros . reduce ( ( acc , item ) => `${ acc } <li>${ item } </li>` , '' ) +
87
- '</ul>If this is an OPL problem, please report this issue to the OPL. ' +
88
- 'If this is a custom problem, please update the problem to use modern macros.' ;
87
+ '</ul><p> If this is an OPL problem, please report this issue to the OPL. ' +
88
+ 'If this is a custom problem, please update the problem to use modern macros.</p> ' ;
89
89
iframe . after ( container ) ;
90
90
}
91
91
iFrameResize (
You can’t perform that action at this time.
0 commit comments