''' title: Html Hypertext ''' import streamsync as ss ss.md("## ss.html") ss.space("") ss.md(''' #### 🔅 Example ''') ss.md("### html") ss.html(f"""

This is a piece of rich text content, which contains bold and italic text.

this is red
""") ss.space("mt-8") ss.write(''' --- #### 🔎 Code ''') ss.md(''' ```python import simplestart as ss ss.html(f"""

This is a piece of rich text content, which contains bold and italic text.

this is red
""") ``` ''')