Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Unified Diff: chrome/common/extensions/docs/templates/private/api_table.html

Issue 61733018: Docserver: Update to the latest version of handlebar. Lots of re-syntaxifying. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments, rebase Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>
-
-
-

Powered by Google App Engine
This is Rietveld 408576698