I’m using Latexify in Pluto and running @latexrun x = something, which assigns something to x and returns a LaTeXString – which looks great. The problem is, Pluto identifies this as an assignment, and prints an extra @latexrun x = above the result.
For pure vanity reasons, is there something that can be done to suppress this LHS, temporarily or otherwise?
That’s because multi-line cells need begin/let ... end - I’m not that deep into Pluto’s internals, but ultimately it’s just a plain .jl file which needs to be split into cells automatically by Pluto’s parser - if it’s multiple lines you have to explicitly tell Pluto that it’s one statement, while as long as it’s on one line I guess Pluto will assume it’s one statement.