当我生成名称中带有$符号的枚举的htmldocumentation时,html只包含$符号后面的位。任何想法如何克服这个?
示例:
public class SampleJava {
/**
* Sample Enum to show problems with $ sign and doxygen
*/
public enum SampleEnum {
/**
* without dollar sign -> works
*/
WITHOUT_DOLLAR,
/**
* with dollar sign -> does not work (i.e. html is $DOLLAR
*/
WITH$DOLLAR
}
}