From 6b26fa088b26bb8a20f5b8585d15695db6a16317 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Ooms?= Date: Sun, 22 Nov 2020 00:13:40 +0100 Subject: [PATCH] :books: docs: Upgrade. --- .esdoc.json | 40 ++++++++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 16 deletions(-) diff --git a/.esdoc.json b/.esdoc.json index 1fda213..9c157f4 100644 --- a/.esdoc.json +++ b/.esdoc.json @@ -5,11 +5,33 @@ "index": "./README.md", "package": "./package.json", "plugins": [ + { + "name": "esdoc-inject-script-plugin", + "option": { + "enable": true, + "scripts": [ + "./doc/scripts/header.js" + ] + } + }, + { + "name": "esdoc-inject-style-plugin", + "option": { + "enable": true, + "styles": [ + "./doc/css/style.css" + ] + } + }, { "name": "esdoc-standard-plugin", "option": { "accessor": { - "access": ["public", "protected", "private"], + "access": [ + "public", + "protected", + "private" + ], "autoPrivate": true }, "brand": { @@ -20,7 +42,7 @@ "source": "./test/src" }, "manual": { - "files":[ + "files": [ "./doc/manual/overview.md", "./doc/manual/installation.md", "./doc/manual/usage.md", @@ -28,20 +50,6 @@ ] } } - }, - { - "name": "esdoc-inject-style-plugin", - "option": { - "enable": true, - "styles": ["./doc/css/style.css"] - } - }, - { - "name": "esdoc-inject-script-plugin", - "option": { - "enable": true, - "scripts": ["./doc/scripts/header.js"] - } } ] }