green commited on
Commit
1192f02
1 Parent(s): f4f149b

Attempting to avoid $ being interpreted as italics

Browse files

before displaying the summary I am replacing the $ with /$. Quick fix.

Files changed (1) hide show
  1. app.py +1 -1
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)