@@ -1567,7 +1567,7 @@ void ClassDefImpl::writeBriefDescription(OutputList &ol,bool exampleFlag) const
15671567 ol.popGeneratorState ();
15681568 ol.generateDoc (briefFile (),briefLine (),this ,nullptr ,
15691569 briefDescription (),TRUE ,FALSE ,QCString (),
1570- TRUE ,FALSE , Config_getBool (MARKDOWN_SUPPORT) );
1570+ TRUE ,FALSE );
15711571 ol.pushGeneratorState ();
15721572 ol.disable (OutputType::RTF);
15731573 ol.writeString (" \n " );
@@ -1599,7 +1599,7 @@ void ClassDefImpl::writeDetailedDocumentationBody(OutputList &ol) const
15991599 if (!briefDescription ().isEmpty () && repeatBrief)
16001600 {
16011601 ol.generateDoc (briefFile (),briefLine (),this ,nullptr ,briefDescription (),FALSE ,FALSE ,
1602- QCString (),FALSE ,FALSE , Config_getBool (MARKDOWN_SUPPORT) );
1602+ QCString (),FALSE ,FALSE );
16031603 }
16041604 if (!briefDescription ().isEmpty () && repeatBrief &&
16051605 !documentation ().isEmpty ())
@@ -1613,7 +1613,7 @@ void ClassDefImpl::writeDetailedDocumentationBody(OutputList &ol) const
16131613 if (!documentation ().isEmpty ())
16141614 {
16151615 ol.generateDoc (docFile (),docLine (),this ,nullptr ,documentation (),TRUE ,FALSE ,
1616- QCString (),FALSE ,FALSE , Config_getBool (MARKDOWN_SUPPORT) );
1616+ QCString (),FALSE ,FALSE );
16171617 }
16181618 // write type constraints
16191619 writeTypeConstraints (ol,this ,m_typeConstraints);
@@ -1625,7 +1625,7 @@ void ClassDefImpl::writeDetailedDocumentationBody(OutputList &ol) const
16251625 inlineTemplateArgListToDoc (m_tempArgs), // docStr
16261626 TRUE , // indexWords
16271627 FALSE , // isExample
1628- QCString (),FALSE ,FALSE , Config_getBool (MARKDOWN_SUPPORT)
1628+ QCString (),FALSE ,FALSE
16291629 );
16301630
16311631 // write examples
@@ -2694,7 +2694,7 @@ void ClassDefImpl::writeDeclarationLink(OutputList &ol,bool &found,const QCStrin
26942694 auto ast { validatingParseDoc (*parser.get (),
26952695 briefFile (),briefLine (),this ,nullptr ,
26962696 briefDescription (),FALSE ,FALSE ,
2697- QCString (),TRUE ,FALSE , Config_getBool (MARKDOWN_SUPPORT) ) };
2697+ QCString (),TRUE ,FALSE ) };
26982698 if (!ast->isEmpty ())
26992699 {
27002700 ol.startMemberDescription (anchor ());
0 commit comments