File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ var pkg = require('../package'),
6
6
helpers = require ( '../lib/helpers' ) ( hbs ) ;
7
7
8
8
var templates = {
9
- bootstrap : require ( '../templates/bootstrap.hbs' )
9
+ bootstrap : require ( '../templates/bootstrap.hbs' ) ,
10
+ markdown : require ( '../templates/markdown.hbs' )
10
11
} ;
11
12
12
13
var title = 'Untitled Project' ,
Original file line number Diff line number Diff line change
1
+ #{{ title }}
2
+
3
+ >{{ description }}
4
+
5
+ {{ #each methods }}{{ #unless ignore }}{{ #if ctx }}
6
+ ##{{ formatName ctx.string }}
7
+ {{{ description.summary }}}
8
+
9
+ ###Parameters
10
+
11
+ {{ #each tags }}{{ #ifCond type " param" }}
12
+ - **{{ name }} ** {{ #each types }} `{{ . }} `{{ /each }} {{ #if optional }} _Optional_{{ /if }} {{{ description }}}
13
+ {{ /ifCond }}{{ /each }}
14
+
15
+ ###Properties
16
+
17
+ {{ #each tags }}{{ #ifCond type " property" }}
18
+ - **{{ name }} ** {{ #each types }} `{{ . }} `{{ /each }} {{ #if optional }} _Optional_{{ /if }} {{{ description }}}
19
+ {{ /ifCond }}{{ /each }}
20
+
21
+ ###Examples
22
+
23
+ {{{ description.body }}}
24
+ {{ /if }}{{ /unless }}{{ /each }}
25
+
26
+ _Documentation generated with [doxdox](https://github.com/neogeek/doxdox)._
You can’t perform that action at this time.
0 commit comments