Index: chrome/common/extensions/docs/templates/private/api_table.html |
diff --git a/chrome/common/extensions/docs/templates/private/api_table.html b/chrome/common/extensions/docs/templates/private/api_table.html |
index 3db1d4434ea932e451511ff94411a6ebaa748bf9..8800d95eb46214abeae44e5f40fbd8cf1dd6510d 100644 |
--- a/chrome/common/extensions/docs/templates/private/api_table.html |
+++ b/chrome/common/extensions/docs/templates/private/api_table.html |
@@ -1,15 +1,12 @@ |
<table> |
<tr><th>Name</th><th>Description</th>{{?is_stable}}<th>Since</th>{{/}}</tr> |
- {{#apis}} |
+ {{#a:apis}} |
<tr> |
- <td><a href="{{name}}.html">{{name}}</a></td> |
- <td>{{{description}}}</td> |
- {{?is_stable}} |
- <td>{{version}}</td> |
- {{/}} |
+ <td><a href="{{a.name}}.html">{{a.name}}</a></td> |
+ <td>{{{a.description}}}</td> |
+ {{?a.is_stable}} |
+ <td>{{a.version}}</td> |
+ {{/a.is_stable}} |
</tr> |
{{/apis}} |
</table> |
- |
- |
- |