| OLD | NEW |
| 1 <div> | 1 <div> |
| 2 <a name="type-{{name}}"></a> | 2 <h3 id="{{id}}">{{name}}</h3> |
| 3 <h4>{{name}}</h4> | |
| 4 <div> | 3 <div> |
| 5 <dt>{{+partials.type_name}}</dt> | 4 <dt>{{+partials.type_name}}</dt> |
| 6 {{?description}}<dd> | 5 {{?description}}<dd> |
| 7 {{{description}}} | 6 {{{description}}} |
| 8 </dd>{{/description}} | 7 </dd>{{/description}} |
| 9 {{?properties}} | 8 {{?properties}} |
| 10 <dd><dl>{{#properties}}{{^additional_properties}} | 9 <h4 id="{{type.name}}-properties"> |
| 10 Properties of <a href="#type-{{type.name}}">{{type.name}}</a> |
| 11 </h4> |
| 12 <dd><dl>{{#properties}} |
| 11 {{+partials.parameter_full}} | 13 {{+partials.parameter_full}} |
| 12 {{/}}{{/}}</dl></dd> | 14 {{/}}</dl></dd> |
| 13 {{/properties}} | 15 {{/properties}} |
| 14 {{?functions}} | 16 {{?functions}} |
| 15 <a name={{type.name}}-methods></a> | 17 <h4 id="{{type.name}}-methods"> |
| 16 <dd><h3>Methods of {{type.name}}</h3> | 18 Methods of <a href="#type-{{type.name}}">{{type.name}}</a> |
| 17 <dd><dl>{{#functions}}{{+partials.function api:api prefix:type.name}}{{/}}
</dl></dd> | 19 </h4> |
| 20 <dd><dl>{{#functions}} |
| 21 {{+partials.function api:api}} |
| 22 {{/}}</dl></dd> |
| 18 {{/functions}} | 23 {{/functions}} |
| 19 {{?events}} | 24 {{?events}} |
| 20 <a name={{type.name}}-events></a> | 25 <h4 id="{{type.name}}-events"> |
| 21 <dd><h3>Events of {{type.name}}</h3> | 26 Events of <a href="#type-{{type.name}}">{{type.name}}</a> |
| 22 <dd><dl>{{#events}}{{+partials.event api:api prefix:type.name}}{{/}}</dl><
/dd> | 27 </h4> |
| 28 <dd><dl>{{#events}} |
| 29 {{+partials.event api:api}} |
| 30 {{/}}</dl></dd> |
| 23 {{/events}} | 31 {{/events}} |
| 24 </div> | 32 </div> |
| 25 </div> | 33 </div> |
| OLD | NEW |