- [ ] `parse_links` exception
- [ ] Add current page to page title
- [ ] Parse MIME type `warc/revisit`
+- [ ] Parse MIME type `text/plain`
- [ ] Filter by period/datetime
- [ ] Apply filters by API endpoints
- [ ] Add contributing guidelines
if mimetype[i] == 'text/html':
st.error('Tweet has been deleted.')
- response_html = requests.get(link)
- content = response_html.text
-
- components.html(content, height=500, scrolling=True)
+ components.iframe(link, height=500, scrolling=True)
st.divider()
-
if mimetype[i] == 'warc/revisit':
st.warning('''MIME Type was not parsed.''')
+ st.divider()
+ if mimetype[i] == 'text/plain':
+ st.warning('''MIME Type was not parsed.''')
+
st.divider()
start_index = st.session_state.offset