Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
ebb2fe6d
Commit
ebb2fe6d
authored
Aug 19, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 735001 - No output for markdown pages with duplicate label title (different anchor)
parent
4766fdba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
markdown.cpp
src/markdown.cpp
+4
-4
No files found.
src/markdown.cpp
View file @
ebb2fe6d
...
...
@@ -1706,7 +1706,7 @@ void writeOneLineHeaderOrRuler(GrowBuf &out,const char *data,int size)
out
.
addStr
(
" "
);
out
.
addStr
(
header
);
out
.
addStr
(
"
\n
"
);
SectionInfo
*
si
=
Doxygen
::
sectionDict
->
find
(
header
);
SectionInfo
*
si
=
Doxygen
::
sectionDict
->
find
(
id
);
if
(
si
)
{
if
(
si
->
lineNr
!=
-
1
)
...
...
@@ -1725,7 +1725,7 @@ void writeOneLineHeaderOrRuler(GrowBuf &out,const char *data,int size)
{
g_current
->
anchors
->
append
(
si
);
}
Doxygen
::
sectionDict
->
append
(
header
,
si
);
Doxygen
::
sectionDict
->
append
(
id
,
si
);
}
}
else
...
...
@@ -2076,7 +2076,7 @@ static QCString processBlocks(const QCString &s,int indent)
out
.
addStr
(
" "
);
out
.
addStr
(
header
);
out
.
addStr
(
"
\n\n
"
);
SectionInfo
*
si
=
Doxygen
::
sectionDict
->
find
(
header
);
SectionInfo
*
si
=
Doxygen
::
sectionDict
->
find
(
id
);
if
(
si
)
{
if
(
si
->
lineNr
!=
-
1
)
...
...
@@ -2096,7 +2096,7 @@ static QCString processBlocks(const QCString &s,int indent)
{
g_current
->
anchors
->
append
(
si
);
}
Doxygen
::
sectionDict
->
append
(
header
,
si
);
Doxygen
::
sectionDict
->
append
(
id
,
si
);
}
}
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment