Skip to content

Commit

Permalink
(docs) add markdown parser to fix docs (#541)
Browse files Browse the repository at this point in the history
But option object should be documented according to https://stackoverflow.com/a/14820610/12135039
  • Loading branch information
MatthijsBurgh authored May 3, 2022
1 parent 192cf2e commit ba5dac7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,12 @@ module.exports = function(grunt) {
jsdoc: {
doc: {
src: [
'./src/*.js',
'./src/**/*.js'
],
options: {
destination: './doc',
private: false
configure: 'jsdoc_conf.json'
}
}
}
Expand Down
6 changes: 6 additions & 0 deletions jsdoc_conf.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"plugins": [ "plugins/markdown" ],
"markdown": {
"parser": "gfm"
}
}

0 comments on commit ba5dac7

Please sign in to comment.