diff options
Diffstat (limited to 'src/pagedef.cpp')
-rw-r--r-- | src/pagedef.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/pagedef.cpp b/src/pagedef.cpp index 4bf42cb..63b24d8 100644 --- a/src/pagedef.cpp +++ b/src/pagedef.cpp @@ -98,7 +98,7 @@ void PageDef::writeDocumentation(OutputList &ol) { if (getOuterScope()!=Doxygen::globalScope && !Config_getBool("DISABLE_INDEX")) { - getOuterScope()->writeNavigationPath(ol,FALSE); + getOuterScope()->writeNavigationPath(ol); } ol.endQuickIndices(); } @@ -183,6 +183,13 @@ void PageDef::writeDocumentation(OutputList &ol) void PageDef::writePageDocumentation(OutputList &ol) { + + bool markdownEnabled = Doxygen::markdownSupport; + if (getLanguage()==SrcLangExt_Markdown) + { + Doxygen::markdownSupport = TRUE; + } + ol.startTextBlock(); ol.parseDoc( docFile(), // fileName @@ -195,6 +202,8 @@ void PageDef::writePageDocumentation(OutputList &ol) ); ol.endTextBlock(); + Doxygen::markdownSupport = markdownEnabled; + if (hasSubPages()) { // for printed documentation we write subpages as section's of the |