How do I reduce the line spacing between bullet points in st.markdown?
Code
st.markdown('- Item 1')
st.markdown('- Item 2')
st.markdown('- Item 3')
Current Output (would like to reduce the space as indicated)
If you put the text inside the same markdown element, you can get something like this, which is a bit closer (items 4 & 5):
import streamlit as st
st.markdown("- Item 1")
st.markdown("- Item 2")
st.markdown("- Item 3")
st.markdown("- Item 4 \n- Item 5 ")