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

Side by Side Diff: chrome/common/extensions/docs/templates/private/table_of_contents.html

Issue 65643009: Docserver: Attach intro metadata to the template itself, not to an object which (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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 <div id="toc"> 1 <div id="toc">
2 <ol> 2 <ol>
3 {{?has_toc}} 3 {{?toc_items}}
4 {{#i:toc_items}} 4 {{#i:toc_items}}
5 <li> 5 <li>
6 <a href="#{{i.link}}">{{{i.title}}}</a> 6 <a href="#{{i.link}}">{{{i.title}}}</a>
7 {{?i.subheadings}} 7 {{?i.subheadings}}
8 <ol> 8 <ol>
9 {{#sh:i.subheadings}}<li><a href="#{{sh.link}}">{{{sh.title}}}</a></li>{ {/}} 9 {{#sh:i.subheadings}}<li><a href="#{{sh.link}}">{{{sh.title}}}</a></li>{ {/}}
10 </ol> 10 </ol>
11 {{/}} 11 {{/}}
12 </li> 12 </li>
13 {{/toc_items}} 13 {{/toc_items}}
14 {{/has_toc}} 14 {{/toc_items}}
15 {{?api}} 15 {{?api}}
16 <div class="api-reference"> 16 <div class="api-reference">
17 <li> 17 <li>
18 <a href="#apiReference">Reference</a> 18 <a href="#apiReference">Reference</a>
19 <ol> 19 <ol>
20 {{#a:api}} 20 {{#a:api}}
21 {{?a.types}} 21 {{?a.types}}
22 <li> 22 <li>
23 {{+partials.toc_types types:a.types/}} 23 {{+partials.toc_types types:a.types/}}
24 </li> 24 </li>
(...skipping 23 matching lines...) Expand all
48 {{+partials.toc_samples title:title/}} 48 {{+partials.toc_samples title:title/}}
49 </li> 49 </li>
50 {{/samples_list}} 50 {{/samples_list}}
51 {{/api}} 51 {{/api}}
52 </ol> 52 </ol>
53 </li> 53 </li>
54 </div> 54 </div>
55 {{/api}} 55 {{/api}}
56 </ol> 56 </ol>
57 </div> 57 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698