@@ -51,7 +51,7 @@ Context:
51
51
</td >
52
52
<td >
53
53
{% if parameter .annotation %}
54
- {% with expression = parameter .annotation %}
54
+ {% with expression = parameter .annotation , backlink_type = "used-by" %}
55
55
<code >{% include "expression" |get_template with context %} </code >
56
56
{% endwith %}
57
57
{% endif %}
@@ -63,7 +63,7 @@ Context:
63
63
</td >
64
64
<td >
65
65
{% if parameter .default %}
66
- {% with expression = parameter .default %}
66
+ {% with expression = parameter .default , backlink_type = "used-by" %}
67
67
<code >{% include "expression" |get_template with context %} </code >
68
68
{% endwith %}
69
69
{% else %}
@@ -96,10 +96,10 @@ Context:
96
96
<b ><code >{{ parameter.name }}</code ></b >
97
97
{% endif %}
98
98
{% if parameter .annotation %}
99
- {% with expression = parameter .annotation %}
99
+ {% with expression = parameter .annotation , backlink_type = "used-by" %}
100
100
(<code >{% include "expression" |get_template with context %} </code >
101
101
{% - if parameter .default %} , {{ lang.t("default:") }}
102
- {% with expression = parameter .default %}
102
+ {% with expression = parameter .default , backlink_type = "used-by" %}
103
103
<code >{% include "expression" |get_template with context %} </code >
104
104
{% endwith %}
105
105
{% endif %} )
@@ -149,15 +149,15 @@ Context:
149
149
{% if parameter .annotation %}
150
150
<span class =" doc-param-annotation" >
151
151
<b >{{ lang.t("TYPE:") }}</b >
152
- {% with expression = parameter .annotation %}
152
+ {% with expression = parameter .annotation , backlink_type = "used-by" %}
153
153
<code >{% include "expression" |get_template with context %} </code >
154
154
{% endwith %}
155
155
</span >
156
156
{% endif %}
157
157
{% if parameter .default %}
158
158
<span class =" doc-param-default" >
159
159
<b >{{ lang.t("DEFAULT:") }}</b >
160
- {% with expression = parameter .default %}
160
+ {% with expression = parameter .default , backlink_type = "used-by" %}
161
161
<code >{% include "expression" |get_template with context %} </code >
162
162
{% endwith %}
163
163
</span >
0 commit comments