@@ -29,7 +29,7 @@ <h4>Path Parameters</h4>
29
29
</ thead >
30
30
< tbody >
31
31
{% for field in link.fields|with_location:'path' %}
32
- < tr > < td class ="parameter-name "> < code > {{ field.name }}</ code > {% if field.required %} < span class ="label label-warning "> required</ span > {% endif %}</ td > < td > {% if field.schema.description %}{{ field.schema.description }}{% endif %}</ td > </ tr >
32
+ < tr > < td class ="parameter-name "> < code > {{ field.name }}</ code > {% if field.required %} < span class ="label label-warning "> required</ span > {% endif %}</ td > < td > {% if field.schema.description %}{{ field.schema.description|safe }}{% endif %}</ td > </ tr >
33
33
{% endfor %}
34
34
</ tbody >
35
35
</ table >
@@ -43,7 +43,7 @@ <h4>Query Parameters</h4>
43
43
</ thead >
44
44
< tbody >
45
45
{% for field in link.fields|with_location:'query' %}
46
- < tr > < td class ="parameter-name "> < code > {{ field.name }}</ code > {% if field.required %} < span class ="label label-warning "> required</ span > {% endif %}</ td > < td > {% if field.schema.description %}{{ field.schema.description }}{% endif %}</ td > </ tr >
46
+ < tr > < td class ="parameter-name "> < code > {{ field.name }}</ code > {% if field.required %} < span class ="label label-warning "> required</ span > {% endif %}</ td > < td > {% if field.schema.description %}{{ field.schema.description|safe }}{% endif %}</ td > </ tr >
47
47
{% endfor %}
48
48
</ tbody >
49
49
</ table >
@@ -57,7 +57,7 @@ <h4>Header Parameters</h4>
57
57
</ thead >
58
58
< tbody >
59
59
{% for field in link.fields|with_location:'header' %}
60
- < tr > < td class ="parameter-name "> < code > {{ field.name }}</ code > {% if field.required %} < span class ="label label-warning "> required</ span > {% endif %}</ td > < td > {% if field.schema.description %}{{ field.schema.description }}{% endif %}</ td > </ tr >
60
+ < tr > < td class ="parameter-name "> < code > {{ field.name }}</ code > {% if field.required %} < span class ="label label-warning "> required</ span > {% endif %}</ td > < td > {% if field.schema.description %}{{ field.schema.description|safe }}{% endif %}</ td > </ tr >
61
61
{% endfor %}
62
62
</ tbody >
63
63
</ table >
@@ -71,7 +71,7 @@ <h4>Request Body</h4>
71
71
</ thead >
72
72
< tbody >
73
73
{% for field in link.fields|with_location:'body' %}
74
- < tr > < td class ="parameter-name "> < code > {{ field.name }}</ code > {% if field.required %} < span class ="label label-warning "> required</ span > {% endif %}</ td > < td > {% if field.schema.description %}{{ field.schema.description }}{% endif %}</ td > </ tr >
74
+ < tr > < td class ="parameter-name "> < code > {{ field.name }}</ code > {% if field.required %} < span class ="label label-warning "> required</ span > {% endif %}</ td > < td > {% if field.schema.description %}{{ field.schema.description|safe }}{% endif %}</ td > </ tr >
75
75
{% endfor %}
76
76
</ tbody >
77
77
</ table >
@@ -84,7 +84,7 @@ <h4>Request Body</h4>
84
84
</ thead >
85
85
< tbody >
86
86
{% for field in link.fields|with_location:'form' %}
87
- < tr > < td class ="parameter-name "> < code > {{ field.name }}</ code > {% if field.required %} < span class ="label label-warning "> required</ span > {% endif %}</ td > < td > {% if field.schema.description %}{{ field.schema.description }}{% endif %}</ td > </ tr >
87
+ < tr > < td class ="parameter-name "> < code > {{ field.name }}</ code > {% if field.required %} < span class ="label label-warning "> required</ span > {% endif %}</ td > < td > {% if field.schema.description %}{{ field.schema.description|safe }}{% endif %}</ td > </ tr >
88
88
{% endfor %}
89
89
</ tbody >
90
90
</ table >
0 commit comments