summaryrefslogtreecommitdiffstats
path: root/src/xmlgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2017-12-24 09:31:24 (GMT)
committerGitHub <noreply@github.com>2017-12-24 09:31:24 (GMT)
commit2ceb8cd0748701376362fee28ecf2b4b80fc47a6 (patch)
treec9b47365a2c24f6c59522ec40ccee6cb68ed8fc3 /src/xmlgen.cpp
parenta20245cfcab4d6ffdf5b92e256017f3cb4c66497 (diff)
parentbd2cf98e75c600e0c2f5ae95301df8745d65571a (diff)
downloadDoxygen-2ceb8cd0748701376362fee28ecf2b4b80fc47a6.zip
Doxygen-2ceb8cd0748701376362fee28ecf2b4b80fc47a6.tar.gz
Doxygen-2ceb8cd0748701376362fee28ecf2b4b80fc47a6.tar.bz2
Merge pull request #624 from mosra/xml-page-briefdescription
Provide page brief in <briefdescription> of XML output
Diffstat (limited to 'src/xmlgen.cpp')
-rw-r--r--src/xmlgen.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp
index 56e107b..a2ed2ba 100644
--- a/src/xmlgen.cpp
+++ b/src/xmlgen.cpp
@@ -1827,6 +1827,9 @@ static void generateXMLForPage(PageDef *pd,FTextStream &ti,bool isExample)
}
}
writeInnerPages(pd->getSubPages(),t);
+ t << " <briefdescription>" << endl;
+ writeXMLDocBlock(t,pd->briefFile(),pd->briefLine(),pd,0,pd->briefDescription());
+ t << " </briefdescription>" << endl;
t << " <detaileddescription>" << endl;
if (isExample)
{