added handling of HTML entities
This commit is contained in:
parent
13d2dad679
commit
4955cdaac6
5 changed files with 94 additions and 8 deletions
|
|
@ -63,8 +63,13 @@ protected:
|
|||
|
||||
/* Handles HTML tags recognized by Doxygen, like <A ...>, <ul>, <table>, ... */
|
||||
void handleDoxyHtmlTag(DoxygenEntity& tag,
|
||||
std::string& translatedComment,
|
||||
std::string &arg);
|
||||
std::string& translatedComment,
|
||||
std::string &arg);
|
||||
|
||||
/* Handles HTML entities recognized by Doxygen, like <, ©, ... */
|
||||
void handleHtmlEntity(DoxygenEntity& tag,
|
||||
std::string& translatedComment,
|
||||
std::string &arg);
|
||||
|
||||
/*
|
||||
* Just prints new line
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue