fixed handling of < and > when they are not used for html tag
This commit is contained in:
parent
a2b0d42c32
commit
f6fc808534
5 changed files with 41 additions and 17 deletions
|
|
@ -203,7 +203,12 @@ int function(int a, float b)
|
|||
* </UL> Ends an unnumbered item list.
|
||||
*
|
||||
* <VAR> Starts a piece of text displayed in an italic font.
|
||||
* </VAR>
|
||||
* </VAR>
|
||||
*
|
||||
* \htmlonly
|
||||
* <u>underlined \b bold text - doxy commands are ignored inside 'htmlonly' section </u>
|
||||
* \endhtmlonly
|
||||
* <u>underlined text</u>
|
||||
*/
|
||||
int htmlFunction(int a, float b)
|
||||
{
|
||||
|
|
@ -232,6 +237,8 @@ int htmlFunction(int a, float b)
|
|||
* ≥
|
||||
* ←
|
||||
* →
|
||||
* Not an &text; html entity - ignored by Doxygen.
|
||||
* Not an &text html entity - ampersand is replaced with entity.
|
||||
*/
|
||||
int htmlEntitiesFunction(int a, float b)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -226,6 +226,10 @@ public class doxygen_translate_runme {
|
|||
" \n" +
|
||||
" <var> Starts a piece of text displayed in an italic font. \n" +
|
||||
" </var> \n" +
|
||||
"\n" +
|
||||
"<u>underlined \\b bold text - doxy commands are ignored inside 'htmlonly' section </u>\n" +
|
||||
"\n" +
|
||||
"<u>underlined text<u>\n" +
|
||||
"");
|
||||
|
||||
wantedComments.put("doxygen_translate.doxygen_translate.htmlEntitiesFunction(int, float)",
|
||||
|
|
@ -250,6 +254,8 @@ public class doxygen_translate_runme {
|
|||
"≥ \n" +
|
||||
"← \n" +
|
||||
"→ \n" +
|
||||
"Not an html entity - ignored by Doxygen. \n" +
|
||||
"Not an &text html entity - ampersand is replaced with entity.\n" +
|
||||
"");
|
||||
|
||||
// and ask the parser to check comments for us
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue