added handling of HTML entities
This commit is contained in:
parent
13d2dad679
commit
4955cdaac6
5 changed files with 94 additions and 8 deletions
|
|
@ -227,6 +227,31 @@ public class doxygen_translate_runme {
|
|||
" <var> Starts a piece of text displayed in an italic font. \n" +
|
||||
" </var> \n" +
|
||||
"");
|
||||
|
||||
wantedComments.put("doxygen_translate.doxygen_translate.htmlEntitiesFunction(int, float)",
|
||||
"All entities are treated as commands © ™ ®\n" +
|
||||
"should work also<in text \n" +
|
||||
"> \n" +
|
||||
"& \n" +
|
||||
"' \n" +
|
||||
"" \n" +
|
||||
"‘ \n" +
|
||||
"’ \n" +
|
||||
"“ \n" +
|
||||
"” \n" +
|
||||
"– \n" +
|
||||
"— \n" +
|
||||
" \n" +
|
||||
"× \n" +
|
||||
"− \n" +
|
||||
"⋅ \n" +
|
||||
"∼ \n" +
|
||||
"≤ \n" +
|
||||
"≥ \n" +
|
||||
"← \n" +
|
||||
"→ \n" +
|
||||
"");
|
||||
|
||||
// and ask the parser to check comments for us
|
||||
System.exit(parser.check(wantedComments));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue