malcolmSQ commited on
Commit ·
80c7573
1
Parent(s): aa44d1d
fix: ensure LaTeX block is a raw string for correct rendering in dashboard header
Browse files- dashboard/app.py +1 -1
dashboard/app.py
CHANGED
|
@@ -162,7 +162,7 @@ with gr.Blocks() as demo:
|
|
| 162 |
</div>
|
| 163 |
</div>
|
| 164 |
""", elem_id="sequestr-header")
|
| 165 |
-
gr.Markdown("""
|
| 166 |
# Declining Increment Model
|
| 167 |
|
| 168 |
**Growth Model:** Annual increment declines linearly to zero; total size is the sum of non-negative increments. No negative growth: DBH and height never decrease. Mortality is compounded annually according to the schedule in the config.
|
|
|
|
| 162 |
</div>
|
| 163 |
</div>
|
| 164 |
""", elem_id="sequestr-header")
|
| 165 |
+
gr.Markdown(r"""
|
| 166 |
# Declining Increment Model
|
| 167 |
|
| 168 |
**Growth Model:** Annual increment declines linearly to zero; total size is the sum of non-negative increments. No negative growth: DBH and height never decrease. Mortality is compounded annually according to the schedule in the config.
|