App fixes
Browse files
app.py
CHANGED
|
@@ -39,6 +39,5 @@ if uploaded_image is not None:
|
|
| 39 |
# Search functionality
|
| 40 |
search_query = st.text_input("Enter a keyword to search within the text")
|
| 41 |
if search_query:
|
| 42 |
-
|
| 43 |
-
st.markdown(highlight_keywords(extracted_text, search_query), unsafe_allow_html=True)
|
| 44 |
|
|
|
|
| 39 |
# Search functionality
|
| 40 |
search_query = st.text_input("Enter a keyword to search within the text")
|
| 41 |
if search_query:
|
| 42 |
+
st.markdown(highlight_keywords(extracted_text, search_query), unsafe_allow_html=True)
|
|
|
|
| 43 |
|