Closed
Description
Link to doc page in question (if any):
https://docs.streamlit.io/library/get-started/multipage-apps#navigating-between-pages
Name of the Streamlit feature whose docs need improvement:
How to create a link that doesn't result in a new tab/window when navigating between pages in the streamlit app.
What you think the docs should say:
Not sure, there are many unanswered questions on this in the forum. I want to go from the "main" page to a side-bar page (optionally with anchor). Both using st.write()
and st.markdown()
result in a new window/tab and full reload of the site.
Sidebar page pages/Definitions.py
Link code possibilities both appear to function the same way, find the page, but start a new window:
st.write('find docs [here](./Definitions)')
# or
st.markdown('find docs [here](./Definitions)')