These are slashes that are added to retain the string .But this does not interfere when it comes to evaluate the question .
Please check screenshot .I printed the value of the variables when the system evaluted the quiz .
http://prntscr.com/ew05ha
here is my comment :
http://prntscr.com/ew06ve
and here is the result :
http://prntscr.com/ew07b3
so what you are pointing out is not the case . The issue relies with the character encoding actually .
The only sole way to resolve is that disable the auto evaluation in that quiz and manully evaluate it.
Hi
I'm having the same issue
https://prnt.sc/k5mmuz
Is there still not a solution for this?
Thank you
please try adding this code in your wplms-customizer.php file in wplms customizer plugin :
add_filter('wplms_text_correct_answer','custom_wplms_text_correct_answer');
function custom_wplms_text_correct_answer($str_lowered_c_answer,$c_answer){
return stripcslashes($str_lowered_c_answer);
}