A Streamlit component that generates an interactive Table of Contents (TOC) with smooth scrolling and navigation.
Visit : https://ziko-st-toc-demo.streamlit.app/
pip install ziko-st-tocimport streamlit as st
from ziko_st_toc import table_of_contents
st.title('Streamlit Table Of contents')
with st.sidebar:
table_of_contents()
st.header('Header I')
# Content ..
st.header('Header II')
# Content ..
st.subheader('Sub Header II-1')
# Content ..
st.subheader('Sub Header II-2')
# Content ..
st.subheader('Sub Header II-3')
# Content ..
st.header('Header III')
# Content ..If you appreciate the library, kindly demonstrate your support by giving it a star!
This projet is licensed under the terms of MIT License

