Closed lucasnantonio closed 1 year ago
The reason these equations were not rendering correctly is that they contain _{a_ which Github tries to render as italics in Markdown.
_{a_
A previous fix introduced $`$` which were breaking our live website builder, because it expects only the clean $$ delimiter .
$`$`
$$
Here, we're fixing the issue by adding a space between the _ and the {a so Github doesn't try to interpret them as an italics command.
_
{a
The reason these equations were not rendering correctly is that they contain
_{a_
which Github tries to render as italics in Markdown.A previous fix introduced
$`$`
which were breaking our live website builder, because it expects only the clean$$
delimiter .Here, we're fixing the issue by adding a space between the
_
and the{a
so Github doesn't try to interpret them as an italics command.