Chromium Code Reviews| Index: chrome/common/extensions/docs/templates/private/callback.html |
| diff --git a/chrome/common/extensions/docs/templates/private/callback.html b/chrome/common/extensions/docs/templates/private/callback.html |
| index 8666da5753615c3716a901d7042761262917538a..11a1d502fa7f4a3106939bfeafa4cda169c30311 100644 |
| --- a/chrome/common/extensions/docs/templates/private/callback.html |
| +++ b/chrome/common/extensions/docs/templates/private/callback.html |
| @@ -1,5 +1,4 @@ |
| {{#callback}} |
| -<p> |
| {{?optional}} |
| If you specify the <em>{{name}}</em> parameter, it should |
| specify a function that looks like this: |
| @@ -7,18 +6,18 @@ |
| The <em>{{name}}</em> parameter should specify a function |
| that looks like this: |
| {{/optional}} |
| -</p> |
| -<pre>function({{#p:parameters}}{{+partials.variable_type type:p/}} {{p.name}}{{^p.last}}, {{/}}{{/}}) <span class="subdued">{...}</span>;</pre> |
| + <br/> |
|
not at google - send to devlin
2014/01/03 23:30:24
prefer to separate blocks via block elements rathe
Renato Mangini (chromium)
2014/02/06 03:19:17
Done.
|
| +<code class="prettyprint">function({{#p:parameters}}{{+partials.variable_type type:p/}} {{p.name}}{{^p.last}}, {{/}}{{/}}) <span class="subdued">{...}</span>;</code> |
| {{?description}} |
| <p> |
| {{{description}}} |
| </p> |
| {{/description}} |
| {{?parameters}} |
| -<dl> |
| + <table class="innerTable"> |
| {{#p:parameters}} |
| {{+partials.parameter_full parameter:p parentName:name hideParamTOC:true /}} |
| {{/parameters}} |
| -</dl> |
| + </table> |
| {{/parameters}} |
| {{/callback}} |