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

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

Issue 11823033: Fix two problems with server2's documentation generator: it wasn't showing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: bump version Created 7 years, 11 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/function.html
diff --git a/chrome/common/extensions/docs/templates/private/function.html b/chrome/common/extensions/docs/templates/private/function.html
index d49bccd3bd306e27da3dcc05e12f47416eb97965..f92a3626167bde0eec6fd16f4da8d6a607d45dea 100644
--- a/chrome/common/extensions/docs/templates/private/function.html
+++ b/chrome/common/extensions/docs/templates/private/function.html
@@ -4,15 +4,21 @@
<span>{{?returns}}{{+partials.variable_type}} {{/}}{{?parent_name}}{{parent_name}}{{:}}chrome.{{api.name}}{{/}}.{{name}}</span>({{#parameters}}{{+partials.parameter_item}}{{^last}}, {{/}}{{/}})
</div>
<div class="description">
- {{?description}}<p>
+ {{?description}}
+ <p>
{{{description}}}
- </p>{{/description}}
+ </p>
+ {{/description}}
{{?parameters}}
<h4>Parameters</h4>
<dl>
- {{#parameters}}{{+partials.parameter_full}}{{/}}
+ {{#parameters}}
+ {{+partials.parameter_full}}
+ {{/parameters}}
</dl>
- {{?callback}}{{+partials.callback}}{{/}}
{{/parameters}}
+ {{?callback}}
+ {{+partials.callback}}
+ {{/callback}}
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698