Open
Description
In the following example, the variable y
does not always get interpolated correctly and is instead interpreted as a math environment
let
x = 1
y = 2
md"""
This works: x = $x, y = $y
but this doesnt: x = $x, y = ($y)
adding a space after '(' fixes it: x = $x, y = ( $y)
"""
end
Julia v1.10.5
Originally posted here: fonsp/Pluto.jl#3028
Possibly related to: #52330, #37334,