diff --git a/docs/assets/scripts/indices.js b/docs/assets/scripts/indices.js
deleted file mode 100644
index 9688671..0000000
--- a/docs/assets/scripts/indices.js
+++ /dev/null
@@ -1,260 +0,0 @@
----
-layout: null
----
-/*
-Copyright 2020 Adobe. All rights reserved.
-This file is licensed to you under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License. You may obtain a copy
-of the License at http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software distributed under
-the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
-OF ANY KIND, either express or implied. See the License for the specific language
-governing permissions and limitations under the License.
-*/
-
-{% assign siblings = site.pages | group_by_exp: "e", "e.url | split: '/' | pop | join: '/' | append: '/'" | sort: "name" %}
-
-window.hyde_index = {
- {% for sibling in siblings %}
- {% assign layouts = sibling.items | group_by: "layout" | sort: "name" %}
- {{ sibling.name | jsonify }}: {
- {% for layout in layouts %}
- {% case layout.name %}
- {% when "directory" %}
- {% assign directories = layout.items | sort: "title" %}
- "directory": `
Directories
-
- {% for p in directories %}
-
-
-
- |
-
- {%- if p.brief -%}
- {{ p.brief | markdownify }}
- {%- elsif p.description -%}
- {{ p.description | markdownify }}
- {%- else -%}
- {{ '_No details given_' | markdownify }}
- {%- endif -%}
- {%- if p.annotation -%}
- ({{p.annotation | join: ", "}})
- {%- endif -%}
- |
-
- {% endfor %}
-
`,
- {% when "library" %}
- {% assign sub_libs = layout.items | group_by: "library-type" | sort: "name" %}
- {% for sub_lib in sub_libs %}
- {% case sub_lib.name %}
- {% when "sourcefile" %}
- {% assign sourcefiles = sub_lib.items | sort: "title" %}
- "sourcefile": `Sources
-
- {% for p in sourcefiles %}
-
-
-
- |
-
- {% if p.brief %}
- {{ p.brief | markdownify }}
- {% elsif p.description %}
- {{ p.description | markdownify }}
- {% else %}
- {{ '_No details given_' | markdownify }}
- {% endif %}
- {% if p.annotation %}
- ({{p.annotation | join: ", "}})
- {% endif %}
- |
-
- {% endfor %}
-
`,
- {% when "library" %}
- {% assign libraries = sub_lib.items | sort: "title" %}
- "library": `Subcomponents
-
- {% for p in libraries %}
-
-
-
- |
-
- {% if p.brief %}
- {{ p.brief | markdownify }}
- {% elsif p.description %}
- {{ p.description | markdownify }}
- {% else %}
- {{ '_No details given_' | markdownify }}
- {% endif %}
- {% if p.annotation %}
- ({{p.annotation | join: ", "}})
- {% endif %}
- |
-
- {% endfor %}
-
`,
- {% endcase %}
- {% endfor %}
- {% when "class" %}
- {% assign classes = layout.items | sort: "title" %}
- "class": `Classes
-
- {% for p in classes %}
-
-
-
- |
-
- {% if p.brief %}
- {{ p.brief | markdownify }}
- {% elsif p.description %}
- {{ p.description | markdownify }}
- {% else %}
- {{ '_No details given_' | markdownify }}
- {% endif %}
- {% if p.annotation %}
- ({{p.annotation | join: ", "}})
- {% endif %}
- |
-
- {% endfor %}
-
`,
- {% when "function" %}
- {% assign functions = layout.items | sort: "title" %}
- "function": `Functions
-
- {% for p in functions %}
-
-
-
- |
-
- {% if p.brief %}
- {{ p.brief | markdownify }}
- {% elsif p.description %}
- {{ p.description | markdownify }}
- {% else %}
- {{ '_No details given_' | markdownify }}
- {% endif %}
- {% if p.annotation %}
- ({{p.annotation | join: ", "}})
- {% endif %}
- |
-
- {% endfor %}
-
`,
- {% when "method" %}
- {% assign methods = layout.items %}
- "method": `Member Functions
-
-
- {% for p in methods %}
- {% if p.is_ctor %}
-
- (constructor) |
-
- {% endif %}
- {% endfor %}
-
- {% for p in methods %}
- {% if p.is_dtor %}
-
- (destructor) |
-
- {% endif %}
- {% endfor %}
-
- {% for p in methods %}
- {% if p.is_ctor or p.is_dtor %}
- {% continue %}
- {% endif %}
-
-
-
-
- |
-
- {% if p.brief %}
- {{ p.brief | markdownify}}
- {% elsif p.description %}
- {{ p.description | markdownify}}
- {% else %}
- {{ '_No details given_' | markdownify}}
- {% endif %}
- {% if p.annotation %}
- ({{p.annotation | join: ", "}})
- {% endif %}
- |
-
- {% endfor %}
-
`,
- {% when "enumeration" %}
- {% assign enums = layout.items %}
- "enumeration": `Enumerations
-
- {% for p in enums %}
-
-
-
- |
-
- {% if p.brief %}
- {{ p.brief | markdownify}}
- {% elsif p.description %}
- {{ p.description | markdownify}}
- {% else %}
- {{ '_No details given_' | markdownify}}
- {% endif %}
- {% if p.annotation %}
- ({{p.annotation | join: ", "}})
- {% endif %}
- |
-
- {% endfor %}
-
`,
- {% when "page" %}
- {% assign pages = layout.items | sort: "title" %}
- "page": `{% for p in pages %}
-
-
-
- |
-
- {{ p.title | markdownify }}
- |
-
- {% endfor %}`
- {% when "eng_index" %}
- {% assign subdocs = layout.items | sort: "title" %}
- "eng_index":`{% for p in subdocs %}
-
-
-
- |
-
- {{ p.title | markdownify }}
- |
-
- {% endfor %}`
-
- {% endcase %}
- {% endfor %}
- },
- {%endfor%}
-};
-
-window.hyde_tabs = `
- {% assign tabbed = site.pages | where_exp:"p","p.tab" | sort:"tab"%}
- {% for p in tabbed %}
- {{ p.tab }}
- {% endfor %}`;
-
-window.hyde_title_index = {
- {% for p in site.pages %}
- {{ p.url | jsonify }}: {{ p.title | jsonify }},
- {% endfor %}
-};