summaryrefslogtreecommitdiffstats
path: root/src/docparser.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-08-09 10:55:44 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-08-09 10:55:44 (GMT)
commitfb7592546b89471e62f68892c945ab7db98875b6 (patch)
tree0d26d0207648892298468dcbfa83e6d64b235e3e /src/docparser.cpp
parent69829b043fb36a56d194dc31522b694379636855 (diff)
downloadDoxygen-fb7592546b89471e62f68892c945ab7db98875b6.zip
Doxygen-fb7592546b89471e62f68892c945ab7db98875b6.tar.gz
Doxygen-fb7592546b89471e62f68892c945ab7db98875b6.tar.bz2
Possibility to have a \image command inside a <A> tag
Enable the possibility to have a `\image` command inside a <A> tag
Diffstat (limited to 'src/docparser.cpp')
-rw-r--r--src/docparser.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/docparser.cpp b/src/docparser.cpp
index 7e050b3..2f77a31 100644
--- a/src/docparser.cpp
+++ b/src/docparser.cpp
@@ -1561,6 +1561,9 @@ reparsetoken:
doctokenizerYYsetStatePara();
}
break;
+ case CMD_IMAGE:
+ ((DocPara *)parent) -> handleImage("image");
+ break;
default:
return FALSE;
}