11{{ log.debug("Dispatching " ~ obj.kind.value) }}
22{% if obj .kind .value == "project" %}
33 {% with project = obj %}
4- {% include "project.html" with context %}
4+ {% include "project.html.jinja " with context %}
55 {% endwith %}
66{% elif obj .kind .value == "module" and config .show_submodules %}
77 {% with module = obj %}
8- {% include "module.html" with context %}
8+ {% include "module.html.jinja " with context %}
99 {% endwith %}
1010{% elif obj .kind .value == "namespace" %}
1111 {% with namespace = obj %}
12- {% include "namespace.html" with context %}
12+ {% include "namespace.html.jinja " with context %}
1313 {% endwith %}
1414{% elif obj .kind .value == "enum" %}
1515 {% with enum = obj %}
16- {% include "enum.html" with context %}
16+ {% include "enum.html.jinja " with context %}
1717 {% endwith %}
1818{% elif obj .kind .value == "enum_member" %}
1919 {% with enum_member = obj %}
20- {% include "enum_member.html" with context %}
20+ {% include "enum_member.html.jinja " with context %}
2121 {% endwith %}
2222{% elif obj .kind .value == "variable" %}
2323 {% with variable = obj %}
24- {% include "variable.html" with context %}
24+ {% include "variable.html.jinja " with context %}
2525 {% endwith %}
2626{% elif obj .kind .value == "function" %}
2727 {% with function = obj %}
28- {% include "function.html" with context %}
28+ {% include "function.html.jinja " with context %}
2929 {% endwith %}
3030{% elif obj .kind .value == "class" %}
3131 {% with class = obj %}
32- {% include "class.html" with context %}
32+ {% include "class.html.jinja " with context %}
3333 {% endwith %}
3434{% elif obj .kind .value == "interface" %}
3535 {% with interface = obj %}
36- {% include "interface.html" with context %}
36+ {% include "interface.html.jinja " with context %}
3737 {% endwith %}
3838{% elif obj .kind .value == "constructor" %}
3939 {% with constructor = obj %}
40- {% include "constructor.html" with context %}
40+ {% include "constructor.html.jinja " with context %}
4141 {% endwith %}
4242{% elif obj .kind .value == "property" %}
4343 {% with property = obj %}
44- {% include "property.html" with context %}
44+ {% include "property.html.jinja " with context %}
4545 {% endwith %}
4646{% elif obj .kind .value == "method" %}
4747 {% with method = obj %}
48- {% include "method.html" with context %}
48+ {% include "method.html.jinja " with context %}
4949 {% endwith %}
5050{% elif obj .kind .value == "call_signature" %}
5151 {% with call_signature = obj %}
52- {% include "call_signature.html" with context %}
52+ {% include "call_signature.html.jinja " with context %}
5353 {% endwith %}
5454{% elif obj .kind .value == "index_signature" %}
5555 {% with index_signature = obj %}
56- {% include "index_signature.html" with context %}
56+ {% include "index_signature.html.jinja " with context %}
5757 {% endwith %}
5858{% elif obj .kind .value == "constructor_signature" %}
5959 {% with constructor_signature = obj %}
60- {% include "constructor_signature.html" with context %}
60+ {% include "constructor_signature.html.jinja " with context %}
6161 {% endwith %}
6262{% elif obj .kind .value == "parameter" %}
6363 {% with parameter = obj %}
64- {% include "parameter.html" with context %}
64+ {% include "parameter.html.jinja " with context %}
6565 {% endwith %}
6666{% elif obj .kind .value == "type_literal" %}
6767 {% with type_literal = obj %}
68- {% include "type_literal.html" with context %}
68+ {% include "type_literal.html.jinja " with context %}
6969 {% endwith %}
7070{% elif obj .kind .value == "type_parameter" %}
7171 {% with type_parameter = obj %}
72- {% include "type_parameter.html" with context %}
72+ {% include "type_parameter.html.jinja " with context %}
7373 {% endwith %}
7474{% elif obj .kind .value == "accessor" %}
7575 {% with accessor = obj %}
76- {% include "accessor.html" with context %}
76+ {% include "accessor.html.jinja " with context %}
7777 {% endwith %}
7878{% elif obj .kind .value == "get_signature" %}
7979 {% with get_signature = obj %}
80- {% include "get_signature.html" with context %}
80+ {% include "get_signature.html.jinja " with context %}
8181 {% endwith %}
8282{% elif obj .kind .value == "set_signature" %}
8383 {% with set_signature = obj %}
84- {% include "set_signature.html" with context %}
84+ {% include "set_signature.html.jinja " with context %}
8585 {% endwith %}
8686{% elif obj .kind .value == "type_alias" %}
8787 {% with type_alias = obj %}
88- {% include "type_alias.html" with context %}
88+ {% include "type_alias.html.jinja " with context %}
8989 {% endwith %}
9090{% elif obj .kind .value == "reference" %}
9191 {% with reference = obj %}
92- {% include "reference.html" with context %}
92+ {% include "reference.html.jinja " with context %}
9393 {% endwith %}
9494{% endif %}
0 commit comments