In Pluto if I try to include an interpolated value in the markdown string, it renders the string without interpolating the value.

I'd like the string to render as: My variable's value is: 10
On
I had a little trouble combining this with math, which uses the $ symbol as a delimiter.
One solution was to use LaTeXStrings.jl
using LaTeXStrings
L"""\text{My variable's value is } %$(x)"""
Using @Stepan Zakharov's approach
Markdown.parse("""My variable's value is \$x\$""")
Markdown.parse("""\$\\mu\$ and \$x\$""")
but I found odd line breaking behaviour this way.
Markdown itself isn't intended to interpolate variables. You may use
Markdown.parseinstead ofmd""literal. This allows the string to interpolate the variables before passing to the Markdown parser.