hetfit / pages /πŸ“ƒ Docs.py
apsys's picture
ic
c176aea
import streamlit as st
st.header('Welcome to Docs!')
with open('main.md','r+') as f:
mdfile = f.read()
st.markdown(mdfile,unsafe_allow_html=True)