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

Side by Side Diff: chrome/common/extensions/docs/templates/private/intro_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 class="intro" id="intro"> 1 <table class="intro" id="intro">
2 {{#api.introList}} 2 {{#item:api.introList}}
3 <tr> 3 <tr>
4 <td class="title">{{title}}:</td> 4 <td class="title">{{item.title}}:</td>
5 <td> 5 <td>
6 {{#content}} 6 {{#c:item.content}}
7 {{?link}}<a href="{{link}}">{{/link}} 7 {{?c.link}}<a href="{{c.link}}">{{/c.link}}
8 {{?class}}<span class="{{class}}">{{/class}} 8 {{?c.class}}<span class="{{c.class}}">{{/c.class}}
9 {{?text}}{{{text}}}{{/text}} 9 {{?c.text}}{{{c.text}}}{{/c.text}}
10 {{?partial}}{{+partial content:content}}{{/partial}} 10 {{?c.partial +c.partial content:c/}}
11 {{?class}}</span>{{/class}} 11 {{?c.class}}</span>{{/c.class}}
12 {{?link}}</a>{{/link}} 12 {{?c.link}}</a>{{/c.link}}
13 <br> 13 <br>
14 {{/content}} 14 {{/item.content}}
15 </td> 15 </td>
16 </tr> 16 </tr>
17 {{/api.introList}} 17 {{/api.introList}}
18 </table> 18 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698