1
1
{{ log.debug("Dispatching " ~ obj.kind.value) }}
2
2
{% if obj .kind .value == "project" %}
3
3
{% with project = obj %}
4
- {% include "project.html" with context %}
4
+ {% include "project.html.jinja " with context %}
5
5
{% endwith %}
6
6
{% elif obj .kind .value == "module" and config .show_submodules %}
7
7
{% with module = obj %}
8
- {% include "module.html" with context %}
8
+ {% include "module.html.jinja " with context %}
9
9
{% endwith %}
10
10
{% elif obj .kind .value == "namespace" %}
11
11
{% with namespace = obj %}
12
- {% include "namespace.html" with context %}
12
+ {% include "namespace.html.jinja " with context %}
13
13
{% endwith %}
14
14
{% elif obj .kind .value == "enum" %}
15
15
{% with enum = obj %}
16
- {% include "enum.html" with context %}
16
+ {% include "enum.html.jinja " with context %}
17
17
{% endwith %}
18
18
{% elif obj .kind .value == "enum_member" %}
19
19
{% with enum_member = obj %}
20
- {% include "enum_member.html" with context %}
20
+ {% include "enum_member.html.jinja " with context %}
21
21
{% endwith %}
22
22
{% elif obj .kind .value == "variable" %}
23
23
{% with variable = obj %}
24
- {% include "variable.html" with context %}
24
+ {% include "variable.html.jinja " with context %}
25
25
{% endwith %}
26
26
{% elif obj .kind .value == "function" %}
27
27
{% with function = obj %}
28
- {% include "function.html" with context %}
28
+ {% include "function.html.jinja " with context %}
29
29
{% endwith %}
30
30
{% elif obj .kind .value == "class" %}
31
31
{% with class = obj %}
32
- {% include "class.html" with context %}
32
+ {% include "class.html.jinja " with context %}
33
33
{% endwith %}
34
34
{% elif obj .kind .value == "interface" %}
35
35
{% with interface = obj %}
36
- {% include "interface.html" with context %}
36
+ {% include "interface.html.jinja " with context %}
37
37
{% endwith %}
38
38
{% elif obj .kind .value == "constructor" %}
39
39
{% with constructor = obj %}
40
- {% include "constructor.html" with context %}
40
+ {% include "constructor.html.jinja " with context %}
41
41
{% endwith %}
42
42
{% elif obj .kind .value == "property" %}
43
43
{% with property = obj %}
44
- {% include "property.html" with context %}
44
+ {% include "property.html.jinja " with context %}
45
45
{% endwith %}
46
46
{% elif obj .kind .value == "method" %}
47
47
{% with method = obj %}
48
- {% include "method.html" with context %}
48
+ {% include "method.html.jinja " with context %}
49
49
{% endwith %}
50
50
{% elif obj .kind .value == "call_signature" %}
51
51
{% with call_signature = obj %}
52
- {% include "call_signature.html" with context %}
52
+ {% include "call_signature.html.jinja " with context %}
53
53
{% endwith %}
54
54
{% elif obj .kind .value == "index_signature" %}
55
55
{% with index_signature = obj %}
56
- {% include "index_signature.html" with context %}
56
+ {% include "index_signature.html.jinja " with context %}
57
57
{% endwith %}
58
58
{% elif obj .kind .value == "constructor_signature" %}
59
59
{% with constructor_signature = obj %}
60
- {% include "constructor_signature.html" with context %}
60
+ {% include "constructor_signature.html.jinja " with context %}
61
61
{% endwith %}
62
62
{% elif obj .kind .value == "parameter" %}
63
63
{% with parameter = obj %}
64
- {% include "parameter.html" with context %}
64
+ {% include "parameter.html.jinja " with context %}
65
65
{% endwith %}
66
66
{% elif obj .kind .value == "type_literal" %}
67
67
{% with type_literal = obj %}
68
- {% include "type_literal.html" with context %}
68
+ {% include "type_literal.html.jinja " with context %}
69
69
{% endwith %}
70
70
{% elif obj .kind .value == "type_parameter" %}
71
71
{% with type_parameter = obj %}
72
- {% include "type_parameter.html" with context %}
72
+ {% include "type_parameter.html.jinja " with context %}
73
73
{% endwith %}
74
74
{% elif obj .kind .value == "accessor" %}
75
75
{% with accessor = obj %}
76
- {% include "accessor.html" with context %}
76
+ {% include "accessor.html.jinja " with context %}
77
77
{% endwith %}
78
78
{% elif obj .kind .value == "get_signature" %}
79
79
{% with get_signature = obj %}
80
- {% include "get_signature.html" with context %}
80
+ {% include "get_signature.html.jinja " with context %}
81
81
{% endwith %}
82
82
{% elif obj .kind .value == "set_signature" %}
83
83
{% with set_signature = obj %}
84
- {% include "set_signature.html" with context %}
84
+ {% include "set_signature.html.jinja " with context %}
85
85
{% endwith %}
86
86
{% elif obj .kind .value == "type_alias" %}
87
87
{% with type_alias = obj %}
88
- {% include "type_alias.html" with context %}
88
+ {% include "type_alias.html.jinja " with context %}
89
89
{% endwith %}
90
90
{% elif obj .kind .value == "reference" %}
91
91
{% with reference = obj %}
92
- {% include "reference.html" with context %}
92
+ {% include "reference.html.jinja " with context %}
93
93
{% endwith %}
94
94
{% endif %}
0 commit comments