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

Side by Side Diff: chrome/common/extensions/docs/templates/articles/whats_new.html

Issue 219213007: Remove .html extension from links (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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
OLDNEW
1 <h1>What's New in {{platformTitle}}</h1> 1 <h1>What's New in {{platformTitle}}</h1>
2 <p> 2 <p>
3 This page lists the API and manifest changes 3 This page lists the API and manifest changes
4 made in recent releases. 4 made in recent releases.
5 </p> 5 </p>
6 6
7 {{#c:changes}} 7 {{#c:changes}}
8 <h2 id="{{c.version}}">Google Chrome {{c.version}}</h2> 8 <h2 id="{{c.version}}">Google Chrome {{c.version}}</h2>
9 {{?c.apis}} 9 {{?c.apis}}
10 <h4 id="{{c.version}}-new-apis">New APIs</h4> 10 <h4 id="{{c.version}}-new-apis">New APIs</h4>
11 <ul> 11 <ul>
12 {{#api:c.apis}} 12 {{#api:c.apis}}
13 <li id="{{api.name}}"><a href="{{api.name}}.html">{{api.name}}</a>: {{{api .description}}}</li> 13 <li id="{{api.name}}"><a href="{{api.name}}">{{api.name}}</a>: {{{api.desc ription}}}</li>
14 {{/}} 14 {{/}}
15 </ul> 15 </ul>
16 {{/}} 16 {{/}}
17 {{?c.additionsToExistingApis}} 17 {{?c.additionsToExistingApis}}
18 <h4 id="{{c.version}}-additions-to-existing-apis">Additions to existing APIs</ h4> 18 <h4 id="{{c.version}}-additions-to-existing-apis">Additions to existing APIs</ h4>
19 <ul> 19 <ul>
20 {{#additions:c.additionsToExistingApis}} 20 {{#additions:c.additionsToExistingApis}}
21 <li id="{{additions.id}}">{{{additions.description}}}</li> 21 <li id="{{additions.id}}">{{{additions.description}}}</li>
22 {{/}} 22 {{/}}
23 </ul> 23 </ul>
24 {{/}} 24 {{/}}
25 {{?c.manifestChanges}} 25 {{?c.manifestChanges}}
26 <h4 id="{{c.version}}-manifest-changes">Manifest changes</h4> 26 <h4 id="{{c.version}}-manifest-changes">Manifest changes</h4>
27 <ul> 27 <ul>
28 {{#manifest:c.manifestChanges}} 28 {{#manifest:c.manifestChanges}}
29 <li id="{{manifest.id}}">{{{manifest.description}}}</li> 29 <li id="{{manifest.id}}">{{{manifest.description}}}</li>
30 {{/}} 30 {{/}}
31 </ul> 31 </ul>
32 {{/}} 32 {{/}}
33 {{/}} 33 {{/}}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698