mirror of
https://github.com/azerothcore/mod-ale
synced 2025-11-29 15:38:17 +08:00
chore: move files
This commit is contained in:
15
src/LuaEngine/docs/ElunaDoc/templates/search-index.js
Normal file
15
src/LuaEngine/docs/ElunaDoc/templates/search-index.js
Normal file
@@ -0,0 +1,15 @@
|
||||
var searchIndex = {};
|
||||
|
||||
{% for class in classes -%}
|
||||
searchIndex["{{ class.name }}"] = {
|
||||
"items": [
|
||||
[0, "", "{{ class.name }}", "{{ class.short_description|replace('\n', ' ')|replace('\"', '"')|parse_links|replace('"', '\\"') }}"],
|
||||
{%- for method in class.methods %}
|
||||
[3, "{{ method.name }}", "", "{{ method.short_description|replace('\n', ' ')|replace('\"', '"')|parse_links|replace('"', '\\"') }}"],
|
||||
{%- endfor %}
|
||||
],
|
||||
"paths": []
|
||||
};
|
||||
{%- endfor %}
|
||||
|
||||
initSearch(searchIndex);
|
||||
Reference in New Issue
Block a user