red1xe commited on
Commit
5beeb23
1 Parent(s): 7a89821
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -12,4 +12,5 @@ if files:
12
  if st.button("Convert"):
13
  for file in files:
14
  text = extract_text(file)
15
- st.write(text)
 
 
12
  if st.button("Convert"):
13
  for file in files:
14
  text = extract_text(file)
15
+ full_text = text.replace("\n", " ")
16
+ st.write(full_text)