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

Unified Diff: chrome/common/extensions/docs/templates/private/api_table.html

Issue 48263002: list apis by channel info, e.g. dev, stable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: done 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/templates/private/api_table.html
diff --git a/chrome/common/extensions/docs/templates/private/api_table.html b/chrome/common/extensions/docs/templates/private/api_table.html
new file mode 100644
index 0000000000000000000000000000000000000000..3db1d4434ea932e451511ff94411a6ebaa748bf9
--- /dev/null
+++ b/chrome/common/extensions/docs/templates/private/api_table.html
@@ -0,0 +1,15 @@
+<table>
+ <tr><th>Name</th><th>Description</th>{{?is_stable}}<th>Since</th>{{/}}</tr>
+ {{#apis}}
+ <tr>
+ <td><a href="{{name}}.html">{{name}}</a></td>
+ <td>{{{description}}}</td>
+ {{?is_stable}}
+ <td>{{version}}</td>
+ {{/}}
+ </tr>
+ {{/apis}}
+</table>
+
+
+

Powered by Google App Engine
This is Rietveld 408576698