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> |
+ |
+ |
+ |