Latex formula with |-symbol is not working #118
Answered
by
bmesuere
Brechtvsk
asked this question in
Bug reports
-
I'm trying to add a simpla math formula using mathjax syntax in my markdown description of my exercise. Yet dodona renders the $ signs as is and it is not translated to math. |
Beta Was this translation helpful? Give feedback.
Answered by
bmesuere
Mar 20, 2025
Replies: 1 comment 2 replies
-
Hi @Brechtvsk, can you give me the link to the exercise? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This seems to be due to a known issue in kramdown, the converter we use to convert markdown to html. What happens is that the
|
symbol in your equation triggers an html table to be created which then messes up the latex conversion. The suggested workaround is to use\vert
instead of|
in your formula.