summaryrefslogtreecommitdiffstats
path: root/src/markdown.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-09-16 16:23:54 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-09-16 16:23:54 (GMT)
commitea361e255efa1286566fef7f38c1ce5a01a44f33 (patch)
tree7599ab3366d9973ad508090678bd1355b8272b5f /src/markdown.cpp
parenta7169b16d748e745bb6626c601acbb94db2f3b0a (diff)
downloadDoxygen-ea361e255efa1286566fef7f38c1ce5a01a44f33.zip
Doxygen-ea361e255efa1286566fef7f38c1ce5a01a44f33.tar.gz
Doxygen-ea361e255efa1286566fef7f38c1ce5a01a44f33.tar.bz2
Does not generate TOC for markdown
The markdown handling has been moved to a more logical place and as a consequence the section headers were added and thus checked twice but didn't show the TOC. Also setting up the table of contents level in a more standard way.
Diffstat (limited to 'src/markdown.cpp')
-rw-r--r--src/markdown.cpp31
1 files changed, 9 insertions, 22 deletions
diff --git a/src/markdown.cpp b/src/markdown.cpp
index c19d6db..65102a2 100644
--- a/src/markdown.cpp
+++ b/src/markdown.cpp
@@ -844,7 +844,15 @@ static int processLink(GrowBuf &out,const char *data,int,int size)
}
if (isToc) // special case for [TOC]
{
- out.addStr("@tableofcontents");
+ int level = Config_getInt(TOC_INCLUDE_HEADINGS);
+ if (level > 0 && level <=5)
+ {
+ char levStr[10];
+ sprintf(levStr,"%d",level);
+ out.addStr("@tableofcontents{html:");
+ out.addStr(levStr);
+ out.addStr("}");
+ }
}
else if (isImageLink)
{
@@ -1908,27 +1916,6 @@ void writeOneLineHeaderOrRuler(GrowBuf &out,const char *data,int size)
out.addStr(" ");
out.addStr(header);
out.addStr("\n");
- SectionInfo *si = Doxygen::sectionDict->find(id);
- if (si)
- {
- if (si->lineNr != -1)
- {
- warn(g_fileName,g_lineNr,"multiple use of section label '%s', (first occurrence: %s, line %d)",header.data(),si->fileName.data(),si->lineNr);
- }
- else
- {
- warn(g_fileName,g_lineNr,"multiple use of section label '%s', (first occurrence: %s)",header.data(),si->fileName.data());
- }
- }
- else
- {
- si = new SectionInfo(g_fileName,g_lineNr,id,header,type,level);
- if (g_current)
- {
- g_current->anchors->append(si);
- }
- Doxygen::sectionDict->append(id,si);
- }
}
else
{