OLD | NEW |
1 <dt> | 1 <dt> |
2 <span class="variable">{{name}}</span> | 2 <span class="variable">{{name}}</span> |
3 <span class="property"> | 3 <span class="property"> |
4 ( | 4 ( |
5 {{?optional}}<span class="optional">optional</span>{{/}} | 5 {{?optional}}<span class="optional">optional</span>{{/}} |
6 {{+partials.variable_type}} | 6 {{+partials.variable_type}} |
7 ) | 7 ) |
8 </span> | 8 </span> |
9 </dt> | 9 </dt> |
10 {{?description}}<dd> | 10 {{?description}}<dd> |
11 {{{description}}} | 11 {{{description}}} |
12 </dd>{{/description}} | 12 </dd>{{/description}} |
| 13 {{?enum_values}} |
| 14 <dl> |
| 15 {{#enum_values}} |
| 16 {{?@.description}} |
| 17 <dd> |
| 18 <dl> |
| 19 <dt>{{name}}</dt> |
| 20 <dd> |
| 21 {{description}} |
| 22 </dd> |
| 23 </dl> |
| 24 </dd> |
| 25 {{/@.description}} |
| 26 {{/enum_values}} |
| 27 </dl> |
| 28 {{/enum_values}} |
13 {{?array.is_object}} | 29 {{?array.is_object}} |
14 <h4>Properties of each item</h4> | 30 <h4>Properties of each item</h4> |
15 {{+partials.type @:array}} | 31 {{+partials.type @:array}} |
16 {{/array.is_object}} | 32 {{/array.is_object}} |
OLD | NEW |