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

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

Issue 18323018: Linking AvailabilityFinder with APIDataSource and intro-table templates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: HostFileSystemCreator, Intro Table data structure changes Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/templates/private/intro_table.html
diff --git a/chrome/common/extensions/docs/templates/private/intro_table.html b/chrome/common/extensions/docs/templates/private/intro_table.html
new file mode 100644
index 0000000000000000000000000000000000000000..ec141dd24e633050c2b7bcb57d0dba7deaa4a96d
--- /dev/null
+++ b/chrome/common/extensions/docs/templates/private/intro_table.html
@@ -0,0 +1,25 @@
+<table class="intro">
+ {{#api.intro_list}}
+ <tr>
+ <td>
+ <strong>{{title}}:</strong>
+ </td>
+ <td>
+ {{#content}}
+ {{?link}}
+ <a href="{{link}}">{{text}}</a>
+ {{:link}}
+ {{?perm}}
+ <code>"{{perm}}"{{?text}}: [{{text}}]{{/text}}</code>
+ {{:perm}}
+ {{?text}}
+ {{{text}}}
not at google - send to devlin 2013/07/09 23:11:55 so regarding your thing about not needing {{{ }}}
epeterson 2013/07/16 00:28:23 The "perm" special case is gone. I think the {{{
+ {{/text}}
+ {{/perm}}
+ {{/link}}
+ <br>
+ {{/content}}
+ </td>
+ </tr>
+ {{/api.intro_list}}
+</table>

Powered by Google App Engine
This is Rietveld 408576698