Update app.py
Browse files
app.py
CHANGED
@@ -28,10 +28,7 @@ if uploaded_file is not None:
|
|
28 |
# Text input for keyword search
|
29 |
keyword = st.text_input("Enter Keyword to Search")
|
30 |
# Display highlighted content if a keyword is entered
|
31 |
-
if keyword:
|
32 |
|
33 |
-
highlighted_content = highlight_content(full_text, keyword)
|
34 |
-
st.subheader("Highlighted Search Results")
|
35 |
|
36 |
|
37 |
if keyword:
|
|
|
28 |
# Text input for keyword search
|
29 |
keyword = st.text_input("Enter Keyword to Search")
|
30 |
# Display highlighted content if a keyword is entered
|
|
|
31 |
|
|
|
|
|
32 |
|
33 |
|
34 |
if keyword:
|