@@ -51,7 +51,7 @@ Context:
5151 </td >
5252 <td >
5353 {% if parameter .annotation %}
54- {% with expression = parameter .annotation %}
54+ {% with expression = parameter .annotation , backlink_type = "used-by" %}
5555 <code >{% include "expression" |get_template with context %} </code >
5656 {% endwith %}
5757 {% endif %}
@@ -63,7 +63,7 @@ Context:
6363 </td >
6464 <td >
6565 {% if parameter .default %}
66- {% with expression = parameter .default %}
66+ {% with expression = parameter .default , backlink_type = "used-by" %}
6767 <code >{% include "expression" |get_template with context %} </code >
6868 {% endwith %}
6969 {% else %}
@@ -96,10 +96,10 @@ Context:
9696 <b ><code >{{ parameter.name }}</code ></b >
9797 {% endif %}
9898 {% if parameter .annotation %}
99- {% with expression = parameter .annotation %}
99+ {% with expression = parameter .annotation , backlink_type = "used-by" %}
100100 (<code >{% include "expression" |get_template with context %} </code >
101101 {% - if parameter .default %} , {{ lang.t("default:") }}
102- {% with expression = parameter .default %}
102+ {% with expression = parameter .default , backlink_type = "used-by" %}
103103 <code >{% include "expression" |get_template with context %} </code >
104104 {% endwith %}
105105 {% endif %} )
@@ -149,15 +149,15 @@ Context:
149149 {% if parameter .annotation %}
150150 <span class =" doc-param-annotation" >
151151 <b >{{ lang.t("TYPE:") }}</b >
152- {% with expression = parameter .annotation %}
152+ {% with expression = parameter .annotation , backlink_type = "used-by" %}
153153 <code >{% include "expression" |get_template with context %} </code >
154154 {% endwith %}
155155 </span >
156156 {% endif %}
157157 {% if parameter .default %}
158158 <span class =" doc-param-default" >
159159 <b >{{ lang.t("DEFAULT:") }}</b >
160- {% with expression = parameter .default %}
160+ {% with expression = parameter .default , backlink_type = "used-by" %}
161161 <code >{% include "expression" |get_template with context %} </code >
162162 {% endwith %}
163163 </span >
0 commit comments