Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
apsys
/
hetfit
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
hetfit
/
pages
/
π Docs.py
apsys
ic
c176aea
about 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
151 Bytes
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
)