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

Side by Side Diff: chrome/common/extensions/docs/templates/public/owners.html

Issue 453713002: Docserver: Generate a table of extension/app API owners (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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
(Empty)
1 <html>
not at google - send to devlin 2014/08/08 14:42:27 hey let's give markdown a try here, see if it work
ahernandez 2014/08/08 20:46:07 Not sure if markdown will work. I tried this:
not at google - send to devlin 2014/08/08 20:53:01 ah, bummer. oh well.
2 <head>
3 <link href="{{static}}/css/out/site.css" rel="stylesheet" type="text/css">
not at google - send to devlin 2014/08/08 14:42:27 this style looks pretty, but wow it's extremely sp
4 </head>
5 <body>
6 <table>
7 <tr>
8 <th>
9 API
10 </th>
11 <th>
12 Owners
13 </th>
14 <th>
15 Notes
16 </th>
17 {{#entry:owners.apis}}
18 <tr>
19 <td>
20 {{entry.api_name}}
21 </td>
22 <td>
23 {{entry.owners}}
24 </td>
25 <td>
26 {{entry.notes}}
27 </td>
28 </tr>
29 {{/owners.apis}}
30 </table>
31 </body>
32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698