I find this behavior surprising (both the quoting and wrapping of strings into a code block): ```python import shiny.express "Hello" "express" ``` <img width="501" alt="Screenshot 2023-12-07 at 1 22 24 PM" src="https://github.com/posit-dev/py-shiny/assets/1365941/fd55e5d1-5237-485d-a4f2-918add227eab"> I would have expected a result closer to: ```python from shiny import ui import shiny.express ui.div("Hello") ui.div("express") ``` <img width="500" alt="Screenshot 2023-12-07 at 1 24 55 PM" src="https://github.com/posit-dev/py-shiny/assets/1365941/60c7d031-f925-4758-8228-bc4c4853652b"> Especially considering it's not terribly hard to opt-into code blocks (and I think we've been considering adding a more official one)? ````python from shiny import ui import shiny.express ui.markdown( """ ``` Hello ``` ``` express ``` """ ) ```` But maybe there's additional rationale for this as a default that I'm not aware of?