You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Incorrect searchdata.xml for mainpage in case of external search
When having a problem like:
```
\mainpage main_t
main_b
```
and we use an empty `Doxyfile` with just external search settings:
```
QUIET = YES
SERVER_BASED_SEARCH = YES
EXTERNAL_SEARCH = YES
SEARCHENGINE_URL = http://localhost/cgi-bin/doxysearch.cgi
```
we get in the `searchdata.xml`:
```
<?xml version="1.0" encoding="UTF-8"?>
<add>
<doc>
<field name="type">page</field>
<field name="name">main_t</field>
<field name="url">index.html</field>
<field name="keywords"></field>
<field name="text">main_t main_b main_b</field>
</doc>
</add>
```
We see here:
- missing "keywords"
- content of "text" where only `main_b` is expected.
so like:
```
<field name="keywords">main_t</field>
<field name="text">main_b</field>
```
0 commit comments