| OLD | NEW | 
| (Empty) |  | 
 |   1 <!DOCTYPE html> | 
 |   2 <html> | 
 |   3   <head> | 
 |   4     <title>Extensions/Apps API Owners</title> | 
 |   5     <style> | 
 |   6       .warning { | 
 |   7         color: #f90101; | 
 |   8       } | 
 |   9       html, body { | 
 |  10         width: 1400px; | 
 |  11       } | 
 |  12       table { | 
 |  13         border-collapse: collapse; | 
 |  14       } | 
 |  15       table, th, td { | 
 |  16         border: 1px solid #eee; | 
 |  17         padding: 2px 6px; | 
 |  18       } | 
 |  19       tr:target { | 
 |  20         font-weight: bold; | 
 |  21         background-color: #dcdcdc; | 
 |  22       } | 
 |  23       #notes { | 
 |  24         white-space: pre-line; | 
 |  25       } | 
 |  26     </style> | 
 |  27   </head> | 
 |  28   <body> | 
 |  29     <h1><center>Extensions/Apps API Owners</center></h1> | 
 |  30     <table> | 
 |  31       <tr> | 
 |  32         <th>API</th> | 
 |  33         <th>Owners</th> | 
 |  34         <th>Notes</th> | 
 |  35       </tr> | 
 |  36       {{#entry:owners.apis}} | 
 |  37       <tr id={{entry.id}}> | 
 |  38         <td>{{entry.apiName}}</td> | 
 |  39         <td> | 
 |  40           {{?entry.owners}} | 
 |  41             {{#owner:entry.owners}} | 
 |  42             <a href="https://codereview.chromium.org/user/{{owner.email}}"> | 
 |  43               {{owner.username}}</a>{{^owner.last}}, {{/owner.last}} | 
 |  44             {{/entry.owners}} | 
 |  45           {{:}} | 
 |  46             <a href="#core"><span class="warning">No owners.</span></a> | 
 |  47           {{/entry.owners}} | 
 |  48         </td> | 
 |  49         <td id="notes"> | 
 |  50           {{entry.notes}} | 
 |  51         </td> | 
 |  52       </tr> | 
 |  53       {{/owners.apis}} | 
 |  54     </table> | 
 |  55   </body> | 
 |  56 </html> | 
| OLD | NEW |