From 84e6be66cee6d90cbd074e0acf090d7902b74702 Mon Sep 17 00:00:00 2001 From: Gordon Woodhull Date: Fri, 12 Feb 2016 18:04:34 -0500 Subject: [PATCH] use jsdoc.conf.json for #1086 --- Gruntfile.js | 2 +- jsdoc.conf.json | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 jsdoc.conf.json diff --git a/Gruntfile.js b/Gruntfile.js index 10c9a96fc..f668138bb 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -220,7 +220,7 @@ module.exports = function (grunt) { options: { destination: 'web/docs/html', template: 'node_modules/ink-docstrap/template', - configure: 'node_modules/ink-docstrap/template/jsdoc.conf.json' + configure: 'jsdoc.conf.json' } } }, diff --git a/jsdoc.conf.json b/jsdoc.conf.json new file mode 100644 index 000000000..b2060b56f --- /dev/null +++ b/jsdoc.conf.json @@ -0,0 +1,28 @@ +{ + "tags": { + "allowUnknownTags": true + }, + "plugins": ["plugins/markdown"], + "templates": { + "logoFile": "", + "cleverLinks": false, + "monospaceLinks": false, + "dateFormat": "ddd MMM Do YYYY", + "outputSourceFiles": true, + "outputSourcePath": true, + "systemName": "dc.js", + "footer": "", + "copyright": "dc.js Copyright © 2012-2016 Copyright 2012-2016 Nick Zhu & the dc.js Developers", + "navType": "vertical", + "theme": "cosmo", + "linenums": true, + "collapseSymbols": false, + "inverseNav": true, + "protocol": "html://", + "methodHeadingReturns": false + }, + "markdown": { + "parser": "gfm", + "hardwrap": true + } +}