Hi,
I am running WeBWorK 2.17. I noticed that every time the function "helpLink" is called, the item number in an ordered list increases by 1. The attached code at the end generates an ordered list as follows:
This is a list.1. Number one
2. Number two
3. Number three, a helpLink: unit
5. Number four, two helpLinks: number, point
8. Number five
This is the end of the list.
Each time helpLink is called, the item number increases by one. This only affects HTML but not LateX. Does this problem have something to do with "/pg_files/js/apps/Knowls/knowl.xxxxxxxx.min.js"?
Will there be a fix or a workaround that I can apply on the server? Thanks very much in advance for any help.
Joseph
####################################################################################
DOCUMENT();
loadMacros("PGstandard.pl");
$BOL = MODES(TeX=>'\begin{enumerate} ', HTML=>'<ol> ');
$EOL = MODES(TeX=>'\end{enumerate} ', HTML=>'</ol> ');
$ITEM = MODES(TeX=>'\item ', HTML=>'<li> ');
BEGIN_TEXT
This is a list.
$BOL
$ITEM Number one
$ITEM Number two
$ITEM Number three, a helpLink: \{helpLink("unit")\}
$ITEM Number four, more helpLink: \{helpLink("number")\}, \{helpLink("point")\}
$ITEM Number five
$EOL
This is the end of the list.
END_TEXT
ENDDOCUMENT();