fixed tests for HTML entities and handling of HTML entities
This commit is contained in:
parent
4955cdaac6
commit
a2b0d42c32
3 changed files with 26 additions and 26 deletions
|
|
@ -1322,7 +1322,7 @@ void DoxygenParser::tokenizeDoxygenComment(const std::string &doxygenComment,
|
|||
|
||||
while (pos != string::npos) {
|
||||
// find the end of the word
|
||||
size_t doxyCmdOrHtmlTagPos = line.find_first_of("\\@< \t", pos);
|
||||
size_t doxyCmdOrHtmlTagPos = line.find_first_of("\\@<& \t", pos);
|
||||
if (doxyCmdOrHtmlTagPos != pos) {
|
||||
// plain text found
|
||||
m_tokenList.push_back(Token(PLAINSTRING,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue