Spaces:
Sleeping
Sleeping
Commit
·
e46d5c4
1
Parent(s):
698579d
Added compare feature + Basic Comments updated
Browse files
app.py
CHANGED
@@ -118,6 +118,13 @@ with tab1:
|
|
118 |
with st.container(border = True):
|
119 |
st.markdown("<div style='text-align: center;'><strong>Fastified PDF viewer</strong></div>", unsafe_allow_html=True)
|
120 |
st.markdown(pdf_display, unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
|
122 |
# Added support for PDFs having text
|
123 |
with tab2:
|
@@ -171,3 +178,10 @@ with tab2:
|
|
171 |
st.markdown("<div style='text-align: center;'><strong>Fastified PDF viewer</strong></div>", unsafe_allow_html=True)
|
172 |
st.markdown(pdf_display, unsafe_allow_html=True)
|
173 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
with st.container(border = True):
|
119 |
st.markdown("<div style='text-align: center;'><strong>Fastified PDF viewer</strong></div>", unsafe_allow_html=True)
|
120 |
st.markdown(pdf_display, unsafe_allow_html=True)
|
121 |
+
|
122 |
+
# Browser Cache Note
|
123 |
+
st.markdown(f"""
|
124 |
+
<div style='background-color: #FFD580; border-radius: 5px;'>
|
125 |
+
<p style='color: black;'><strong>Note</strong> - {note_text}</p>
|
126 |
+
</div>
|
127 |
+
""", unsafe_allow_html=True)
|
128 |
|
129 |
# Added support for PDFs having text
|
130 |
with tab2:
|
|
|
178 |
st.markdown("<div style='text-align: center;'><strong>Fastified PDF viewer</strong></div>", unsafe_allow_html=True)
|
179 |
st.markdown(pdf_display, unsafe_allow_html=True)
|
180 |
|
181 |
+
# Browser Cache Note
|
182 |
+
st.markdown(f"""
|
183 |
+
<div style='background-color: #FFD580; border-radius: 5px;'>
|
184 |
+
<p style='color: black;'><strong>Note</strong> - {note_text}</p>
|
185 |
+
</div>
|
186 |
+
""", unsafe_allow_html=True)
|
187 |
+
|