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

Side by Side Diff: chrome/common/extensions/docs/templates/private/api_table.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 <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 {{#a:apis}} 3 {{#a:apis}}
4 <tr> 4 <tr>
5 <td><a href="{{a.name}}.html">{{a.name}}</a></td> 5 <td><a href="{{a.name}}">{{a.name}}</a></td>
6 <td>{{{a.description}}}</td> 6 <td>{{{a.description}}}</td>
7 {{?is_stable}} 7 {{?is_stable}}
8 <td>{{a.version}}</td> 8 <td>{{a.version}}</td>
9 {{/is_stable}} 9 {{/is_stable}}
10 </tr> 10 </tr>
11 {{/apis}} 11 {{/apis}}
12 </table> 12 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698