Commit d1252c5
committed
Missing items in doxygen internal search
When having the simple file:
```
\mainpage The main page
\page pg1 The first page
\section sect_1_1 first section first page
\section sect_1_2 second section first page
\page pg2 The second page
\section sect_2_1 first section second page
\section sect_2_2 second section second page
```
and doing a "normal" internal doxygen search for the word `second` we get a.o.
```
first section second page
The second page
second section first page
second section second page
```
but when searching for `second page` we get
```
first section second page
The second page
```
so we are missing the reference to
```
second section second page
```
this is due to the filtering of the words in the string and omitting double words.1 parent 9b51550 commit d1252c5
1 file changed
+2
-10
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
121 | 121 | | |
122 | 122 | | |
123 | 123 | | |
124 | | - | |
125 | 124 | | |
126 | 125 | | |
127 | 126 | | |
128 | | - | |
129 | | - | |
130 | | - | |
131 | | - | |
132 | | - | |
| 127 | + | |
133 | 128 | | |
134 | 129 | | |
135 | 130 | | |
136 | 131 | | |
137 | 132 | | |
138 | | - | |
139 | | - | |
140 | | - | |
141 | | - | |
| 133 | + | |
142 | 134 | | |
143 | 135 | | |
144 | 136 | | |
| |||
0 commit comments