File tree 2 files changed +22
-10
lines changed
2 files changed +22
-10
lines changed Original file line number Diff line number Diff line change
1
+ {% if include.val == empty %} Empty array {%endif%}
2
+ {% if include.val.first %} Object with properties: < ul >
3
+ {% for e in include.val.first %}
4
+ < li > {{e[0]}} - {{e[1]}}</ li >
5
+ {% endfor %}
6
+ </ ul >
7
+ {% elsif include.val %}
8
+ {{include.val}}
9
+ {% else %}
10
+ N/A
11
+ {%endif%}
Original file line number Diff line number Diff line change 37
37
<th class =" manifest-ref-table " >Type</th >
38
38
<th class =" manifest-ref-table " >Description</th >
39
39
<th class =" manifest-ref-table " >Required?</th >
40
+ <th class =" manifest-ref-table " >Default Value</th >
40
41
</tr ></thead >
41
42
42
43
<tbody >
69
70
{% include required.html prop=property.first required_list=required_properties %}
70
71
</td >
71
72
73
+ <td class =" manifest-ref-table " > <!-- Default Value -->
74
+ {% include default-value.html val=property.last.default %}
75
+ </td >
76
+
72
77
</tr >
73
78
{% endfor %}
74
79
157
162
<!-- Description -->
158
163
<td class =" manifest-ref-table " >{%- include description.html str=property.last.description -%}</td >
159
164
160
- <td class =" manifest-ref-table " > <!-- Required?
161
- property.first = {{property.first}}
162
- entity.required = {{entity.required}} -->
165
+ <!-- Required? -->
166
+ <td class =" manifest-ref-table " >
163
167
{% include required.html prop=property.first required_list=entity.required %}
164
168
</td >
165
169
166
- <td class =" manifest-ref-table " > <!-- Default Value -->
167
- {% if property.last.default == empty %} Empty array {%endif%}
168
- {% if property.last.default %}
169
- {{property.last.default}}
170
- {% else %}
171
- N/A
172
- {%endif%}
170
+ <!-- Default Value -->
171
+ <td class =" manifest-ref-table " >
172
+ {% include default-value.html val=property.last.default %}
173
173
</td >
174
+
174
175
</tr >
175
176
{% endfor %}
176
177
</tbody ></table >
You can’t perform that action at this time.
0 commit comments