import streamlit as st def render_sidebar(): with st.sidebar: st.title("Story Genius Maker") st.markdown("---") with open("manual.md", "r", encoding="utf-8") as file: manual_content = file.read() st.markdown(manual_content)