I am using vue-mathjax for compiling the math equations in my vue project. It is compiling the text between first bracket (). I want to prevent compiling the string inside the bracket. In the documentation I found that, for $ sign, if we want to escape compiling, we need to use \$. So I tried this rule for the text inside ().
My expected output: (this is not math)
Here is what I tried: \(this is not math \)
The output: \(this is not math \)
It did not compiled the string as math equation, but is shows \ in the output.
If I try without , like (this is not math)
The output is this is not math
Mathjax compiles the string inside the bracket.
Can anyone help me with the problem?

