Hi Danny,
As you say, this seems to be caused by tth treating ` as a special
character. The solution we have arrived at is to filter out ` (along
with $ and @) from sticky answers. To do this yourself, edit the file
.../webwork/system/courseScripts/PGbasicmacros.pl. Around line 248 in the sub NAMED_ANS_RULE, change
$answer_value =~ tr/$@//d; ## make sure student answers can not be interpolated by e.g. EV3
to
$answer_value =~ tr/$@`//d; ## make sure student answers can not be interpolated by e.g. EV3
Arnie
<| Post or View Comments |> |