[Doxygen-develop] [BUG] BACK SLASH go away
Brought to you by:
dimitri
From: Ryunosuke S. <pe...@mi...> - 2002-09-30 21:21:17
|
Hi I found incompatibility. This problem causes garbage characters in Japanese. source1: ------------------------------------- /** * test * \param c \b \\param3 <-- check */ int main(char a, ///< \b param1 int b ///< \b \\param2 <-- check ); HTML output from souce1: --------------------------------------- Function Documentation int main ( char a, int b ) test Parameters: c \\param3 <-- check Parameters: a param1 b \param2 <-- check ------------------------------------------ Same arguments, different outputs. BACK SLASH go away. --------------------------------------- Input: * \param c \b \\param3 <-- check int b ///< \b \\param2 <-- check Output: c \\param3 <-- check b \param2 <-- check -------------------------------------- Please tell me the cause or the name of doubtful file. Help me! I'm seeking it for twelve hours. Ryunosuke Satoh su...@ho... |