File size: 151 Bytes
c176aea
 
 
 
 
 
1
2
3
4
5
6
7
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)