Attempting to avoid $ being interpreted as italics
Browse filesbefore displaying the summary I am replacing the $ with /$. Quick fix.
app.py
CHANGED
|
@@ -293,7 +293,7 @@ with st.form(key='columns_in_form'):
|
|
| 293 |
st.write("No text to return...very sorry. Please hit 'refresh topics' in the options panel!")
|
| 294 |
else:
|
| 295 |
st.subheader("Your digest:")
|
| 296 |
-
st.info(digestor.text)
|
| 297 |
|
| 298 |
st.subheader("Summarization stats:")
|
| 299 |
col1, col2, col3 = st.columns(3)
|
|
|
|
| 293 |
st.write("No text to return...very sorry. Please hit 'refresh topics' in the options panel!")
|
| 294 |
else:
|
| 295 |
st.subheader("Your digest:")
|
| 296 |
+
st.info(digestor.text.replace("$","\$"))
|
| 297 |
|
| 298 |
st.subheader("Summarization stats:")
|
| 299 |
col1, col2, col3 = st.columns(3)
|