Skip to content

Commit ba5dac7

Browse files
(docs) add markdown parser to fix docs (RobotWebTools#541)
But option object should be documented according to https://stackoverflow.com/a/14820610/12135039
1 parent 192cf2e commit ba5dac7

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Gruntfile.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,12 @@ module.exports = function(grunt) {
9595
jsdoc: {
9696
doc: {
9797
src: [
98+
'./src/*.js',
9899
'./src/**/*.js'
99100
],
100101
options: {
101102
destination: './doc',
102-
private: false
103+
configure: 'jsdoc_conf.json'
103104
}
104105
}
105106
}

jsdoc_conf.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"plugins": [ "plugins/markdown" ],
3+
"markdown": {
4+
"parser": "gfm"
5+
}
6+
}

0 commit comments

Comments
 (0)