Fix links in search results.

This commit is contained in:
Patman64
2014-08-16 01:09:36 -04:00
parent 846b9c7f6d
commit b8b8e06ec3

View File

@@ -1,17 +1,15 @@
var searchIndex = {};
//{%- for class in classes %}
{% 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 %}
[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": [
]
"paths": []
};
//{%- endfor %}
{%- endfor %}
initSearch(searchIndex);