@@ -9,28 +9,28 @@ var buildTemplates = require("./templates"),
9
9
10
10
11
11
/**
12
- * @function documentjs.generators. html. build. renderer
13
- * @parent documentjs.generators. html.build.methods
14
- *
12
+ * @module { function} bit-docs-generate- html/ build/ renderer
13
+ * @parent bit-docs-generate- html/modules
14
+ *
15
15
* Creates a renderer function used to generate
16
16
* the documentation.
17
- *
17
+ *
18
18
* @signature `.build.renderer(buildTemplatesPromise, options)`
19
- *
20
- * Registers all `.mustache` files in the _documentjs/site/templates_ folder as
19
+ *
20
+ * Registers all `.mustache` files in the _documentjs/site/templates_ folder as
21
21
* partials and creates a [documentjs.generators.html.types.renderer renderer] function that
22
- * renders the `content.mustache` template within the `layout.mustache` template.
23
- *
24
- * @param {Promise<Handlebars> } buildTemplatesPromise The result of calling
22
+ * renders the `content.mustache` template within the `layout.mustache` template.
23
+ *
24
+ * @param {Promise<Handlebars> } buildTemplatesPromise The result of calling
25
25
* [documentjs.generators.html.build.templates]. Building the renderer
26
- * must happen after the templates have been copied over. Passing this
26
+ * must happen after the templates have been copied over. Passing this
27
27
* argument enforces that.
28
- *
28
+ *
29
29
* @param {{} } options
30
- *
30
+ *
31
31
* Options used to configure the behavior of the renderer.
32
- *
33
- *
32
+ *
33
+ *
34
34
* @return {Promise<documentjs.generators.html.types.renderer> } A promise that
35
35
* resolves with the renderer function.
36
36
*/
@@ -49,4 +49,3 @@ module.exports = function(buildTemplatesPromise, options){
49
49
} ) ;
50
50
} ) ;
51
51
} ;
52
-
0 commit comments