summaryrefslogtreecommitdiffstats
path: root/src/markdown.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/markdown.cpp')
-rw-r--r--src/markdown.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/markdown.cpp b/src/markdown.cpp
index 4f40f8d..6e9ac27 100644
--- a/src/markdown.cpp
+++ b/src/markdown.cpp
@@ -2457,7 +2457,7 @@ QCString Markdown::detab(const QCString &s,int &refIndent)
//---------------------------------------------------------------------------
-QCString Markdown::process(const QCString &input)
+QCString Markdown::process(const QCString &input, int &startNewlines)
{
if (input.isEmpty()) return input;
int refIndent;
@@ -2488,7 +2488,7 @@ QCString Markdown::process(const QCString &input)
if (p)
{
while (*p==' ') p++; // skip over spaces
- while (*p=='\n') p++; // skip over newlines
+ while (*p=='\n') {startNewlines++;p++;}; // skip over newlines
if (qstrncmp(p,"<br>",4)==0) p+=4; // skip over <br>
}
if (p>result.data())
@@ -2576,7 +2576,9 @@ void MarkdownOutlineParser::parseInput(const char *fileName,
Protection prot=Public;
bool needsEntry = FALSE;
int position=0;
- QCString processedDocs = markdown.process(docs);
+ int startNewlines;
+ QCString processedDocs = markdown.process(docs,startNewlines);
+ lineNr += startNewlines;
while (p->commentScanner.parseCommentBlock(
this,
current.get(),