awacke1 commited on
Commit
d7e24f9
·
1 Parent(s): 4ea0b05

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -19,11 +19,9 @@ def get_word_frequency(text):
19
  with open('Setup.md', 'r') as file:
20
  text = file.read()
21
 
22
- # Parse the markdown using the markdown library
23
- html = markdown.markdown(text)
24
 
25
  # Display the parsed markdown
26
- st.markdown(html, unsafe_allow_html=True)
27
 
28
  # Get the word frequency of the markdown text
29
  word_frequency = get_word_frequency(text)
 
19
  with open('Setup.md', 'r') as file:
20
  text = file.read()
21
 
 
 
22
 
23
  # Display the parsed markdown
24
+ st.markdown(text, unsafe_allow_html=True)
25
 
26
  # Get the word frequency of the markdown text
27
  word_frequency = get_word_frequency(text)