Problem
HTML comments like <!-- md --> in Python docstring are not removed when rendering by streamlit. This is different than what I was expecting. We need investigate how Python docstring is rendered by streamlit.
This promblem is like below:

Solution
Maybe, we can find the solution to this problem by reading a part of docstring parser in streamlit's implementation:
In addition, docstirng is treated as "magic command" in streamlit. May be there's a hint of a solution in streamlit's documentation.
How it works is simple: any time Streamlit sees either a variable or literal value on its own line, it automatically writes that to your app using st.write (which you’ll learn about later).
