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

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

Issue 10810047: Extensions Docs Server: HTML parser in IDS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: No HTML in toc and only take first h1 Created 8 years, 5 months 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
« no previous file with comments | « chrome/common/extensions/docs/server2/intro_data_source.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div id="toc"> 1 <div id="toc">
2 <h2>Contents</h2> 2 <h2>Contents</h2>
3 <ol> 3 <ol>
4 {{#toc}} 4 {{#toc}}
5 <li> 5 <li>
6 <a href=#{{link}}>{{title}}</a> 6 <a href=#{{link}}>{{{title}}}</a>
7 {{?subheadings}} 7 {{?subheadings}}
8 <ol> 8 <ol>
9 {{#subheadings}}<li><a href=#{{link}}>{{title}}</a></li>{{/}} 9 {{#subheadings}}<li><a href=#{{link}}>{{{title}}}</a></li>{{/}}
10 </ol> 10 </ol>
11 {{/}} 11 {{/}}
12 </li> 12 </li>
13 {{/toc}} 13 {{/toc}}
14 {{?api}} 14 {{?api}}
15 <li> 15 <li>
16 <a href="#apiReference">API reference: chrome.{{api.name}}</a> 16 <a href="#apiReference">API reference: chrome.{{api.name}}</a>
17 <ol> 17 <ol>
18 {{#api}} 18 {{#api}}
19 {{?api.types}}<li>{{+partials.toc_types}}</li>{{/}} 19 {{?api.types}}<li>{{+partials.toc_types}}</li>{{/}}
20 {{?api.properties}}<li>{{+partials.toc_properties}}</li>{{/}} 20 {{?api.properties}}<li>{{+partials.toc_properties}}</li>{{/}}
21 {{?api.functions}}<li>{{+partials.toc_functions}}</li>{{/}} 21 {{?api.functions}}<li>{{+partials.toc_functions}}</li>{{/}}
22 {{?api.events}}<li>{{+partials.toc_events}}</li>{{/}} 22 {{?api.events}}<li>{{+partials.toc_events}}</li>{{/}}
23 {{/api}} 23 {{/api}}
24 </ol> 24 </ol>
25 </li> 25 </li>
26 {{/api}} 26 {{/api}}
27 </ol> 27 </ol>
28 </div> 28 </div>
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/server2/intro_data_source.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698