mirror of
https://github.com/azerothcore/mod-ale
synced 2025-11-29 15:38:17 +08:00
17 lines
472 B
JavaScript
17 lines
472 B
JavaScript
var searchIndex = {};
|
|
|
|
//{%- for class in classes %}
|
|
searchIndex["{{ class.name }}"] = {
|
|
"items": [
|
|
[0, "", "{{ class.name }}", "{{ class.short_description|replace('\n', ' ')|replace('\"', '"') }}"],
|
|
//{%- for method in class.methods %}
|
|
[3, "{{ method.name }}", "", "{{ method.short_description|replace('\n', ' ')|replace('\"', '"') }}"],
|
|
//{%- endfor %}
|
|
],
|
|
"paths": [
|
|
|
|
]
|
|
};
|
|
//{%- endfor %}
|
|
|
|
initSearch(searchIndex); |