Blame templates/html/htmljssearchindex.tpl

Packit Service 50c9f2
{# input: si symbolIndex #}
Packit Service 50c9f2
var searchData =
Packit Service 50c9f2
[
Packit Service 50c9f2
{% for group in si.symbolGroups %}['{{ group.id }}',['{{ group.name }}',
Packit Service 50c9f2
{% for sym in group.symbols %}
Packit Service 50c9f2
{% spaceless %}
Packit Service 50c9f2
['{{ sym.relPath }}{{ sym.fileName }}{{ config.HTML_FILE_EXTENSION }}{% if sym.anchor %}#{{ sym.anchor }}{% endif %}',
Packit Service 50c9f2
{% if not config.EXT_LINKS_IN_WINDOW %}1{% else %}0{% endif %},
Packit Service 50c9f2
'{{ sym.scope|nowrap }}']
Packit Service 50c9f2
{% endspaceless %}
Packit Service 50c9f2
{% if not forloop.last %},{% endif %}
Packit Service 50c9f2
{% endfor %}
Packit Service 50c9f2
]]{% if not forloop.last %},{% endif %}
Packit Service 50c9f2
{% endfor %}
Packit Service 50c9f2
];