diff --git a/IPython/html/static/notebook/js/notebook.js b/IPython/html/static/notebook/js/notebook.js
index cb9b06b..9d9c66d 100644
--- a/IPython/html/static/notebook/js/notebook.js
+++ b/IPython/html/static/notebook/js/notebook.js
@@ -1097,9 +1097,9 @@ define([
Notebook.prototype._warn_heading = function () {
/**
+ * warn about heading cells being removed
* @private
*/
- // warn about heading cells being removed
dialog.modal({
notebook: this,
keyboard_manager: this.keyboard_manager,
diff --git a/docs/jsdoc_config.json b/docs/jsdoc_config.json
index ba3ba96..8cdd77a 100644
--- a/docs/jsdoc_config.json
+++ b/docs/jsdoc_config.json
@@ -1,19 +1,20 @@
{
- "tags": {
- "allowUnknownTags": true
+ "markdown": {
+ "parser": "gfm"
},
+ "plugins": [
+ "plugins/markdown"
+ ],
"source": {
"include": [
"../IPython/html/static/notebook/js/notebook.js"
]
},
- "plugins": [],
+ "tags": {
+ "allowUnknownTags": true
+ },
"templates": {
"cleverLinks": false,
"monospaceLinks": false
- },
- "plugins": [ "plugins/markdown" ],
- "markdown": {
- "parser": "gfm"
}
-}
\ No newline at end of file
+}
diff --git a/docs/make.cmd b/docs/make.cmd
index 5e3503d..b174f3a 100644
--- a/docs/make.cmd
+++ b/docs/make.cmd
@@ -43,11 +43,11 @@ FOR %%L IN (html pickle htmlhelp latex changes linkcheck) DO (
)
)
-IF "%1" == "clean" (
+IF "%1" == "jsapi" (
%JSDOC% -c jsdoc_config.json -d ./build/jsapi_html/
)
-IF "%1" == "jsapi" (
+IF "%1" == "clean" (
RD /s /q build dist %SRCDIR%\api\generated 2>NUL
IF ERRORLEVEL 0 ECHO Build environment cleaned!
GOTO END