full_text
Browse files
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 |
-
|
|
|
|
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)
|