Hello it is possible to use st.markdown with values from dataset like we use with text?
Exemple:
with text:
st.markdown(’### The text’)
with value from dataset:
st.markdown(df.iloc[1][33] → will work, but how we chance de size using the ###
Thanks