Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Markdown text interpolation bug #55943

Open
haakon-e opened this issue Sep 30, 2024 · 0 comments
Open

Markdown text interpolation bug #55943

haakon-e opened this issue Sep 30, 2024 · 0 comments

Comments

@haakon-e
Copy link
Contributor

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

Screenshot:
image


Julia v1.10.5
Originally posted here: fonsp/Pluto.jl#3028
Possibly related to: #52330, #37334,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants