diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/docparser.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/docparser.cpp b/src/docparser.cpp index 0cb4ea3..7e050b3 100644 --- a/src/docparser.cpp +++ b/src/docparser.cpp @@ -146,6 +146,9 @@ struct DocParserContext static QStack<DocParserContext> g_parserStack; //--------------------------------------------------------------------------- +static void handleImg(DocNode *parent,QList<DocNode> &children,const HtmlAttribList &tagHtmlAttribs); + +//--------------------------------------------------------------------------- static void docParserPushContext(bool saveParamInfo=TRUE) { //QCString indent; @@ -1643,6 +1646,10 @@ reparsetoken: handleStyleLeave(parent,children,DocStyleChange::Small,tokenName); } break; + case HTML_IMG: + if (!g_token->endTag) + handleImg(parent,children,g_token->attribs); + break; default: return FALSE; break; |