The code in HTMRenderer.java
} else if (mode.startsWith("view")) {
// dollar signs lead to errors in the regexps
content = content.replace("$", "$");
}
Will cause any $ (Dollar) characters in a code block to display in the final output as & dollar;
e.g,
```
9777 $$SQL$GV_CMD_LINE_FLAGS_SREF (CMD_LINE$V_NOG_FLOAT) = TRUE
```
being inside a < code > block in the browser page the HTML markup will not be rendered as "$"
and will result in the following display :
9777 $$SQL$GV_CMD_LINE_FLAGS_SREF (CMD_LINE$V_NOG_FLOAT) = TRUE
Thanks for reporting that. It will be fixed in the next release.
There's a beta version with the fix at https://sourceforge.net/projects/j-trac/files/jtrac/beta/
thanks Ulf. downloaded and tried. works well. thanks for the speedy update