We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 192cf2e commit ba5dac7Copy full SHA for ba5dac7
Gruntfile.js
@@ -95,11 +95,12 @@ module.exports = function(grunt) {
95
jsdoc: {
96
doc: {
97
src: [
98
+ './src/*.js',
99
'./src/**/*.js'
100
],
101
options: {
102
destination: './doc',
- private: false
103
+ configure: 'jsdoc_conf.json'
104
}
105
106
jsdoc_conf.json
@@ -0,0 +1,6 @@
1
+{
2
+ "plugins": [ "plugins/markdown" ],
3
+ "markdown": {
4
+ "parser": "gfm"
5
+ }
6
+}
0 commit comments