Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -2,8 +2,11 @@ import streamlit as st
|
|
| 2 |
|
| 3 |
st.header('**Example App showing Anchor links**')
|
| 4 |
|
| 5 |
-
st.markdown(
|
| 6 |
-
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
st.header('Section 1')
|
| 9 |
st.write('''
|
|
|
|
| 2 |
|
| 3 |
st.header('**Example App showing Anchor links**')
|
| 4 |
|
| 5 |
+
st.sidebar.markdown('''
|
| 6 |
+
# Sections
|
| 7 |
+
- [Section 1](#section-1)
|
| 8 |
+
- [Section 2](#section-2)
|
| 9 |
+
''', unsafe_allow_html=True)
|
| 10 |
|
| 11 |
st.header('Section 1')
|
| 12 |
st.write('''
|