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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <table> 1 <table>
2 <tr><th>Name</th><th>Description</th>{{?is_stable}}<th>Since</th>{{/}}</tr> 2 <tr><th>Name</th><th>Description</th>{{?is_stable}}<th>Since</th>{{/}}</tr>
3 {{#apis}} 3 {{#a:apis}}
4 <tr> 4 <tr>
5 <td><a href="{{name}}.html">{{name}}</a></td> 5 <td><a href="{{a.name}}.html">{{a.name}}</a></td>
6 <td>{{{description}}}</td> 6 <td>{{{a.description}}}</td>
7 {{?is_stable}} 7 {{?a.is_stable}}
8 <td>{{version}}</td> 8 <td>{{a.version}}</td>
9 {{/}} 9 {{/a.is_stable}}
10 </tr> 10 </tr>
11 {{/apis}} 11 {{/apis}}
12 </table> 12 </table>
13
14
15
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698