From 07164f372913255a0b84754668ea2216cc2a6944 Mon Sep 17 00:00:00 2001 From: "Benjamin E. Coe" Date: Sun, 15 Dec 2019 00:51:47 -0500 Subject: [PATCH] fix(docs): snippets are now replaced in jsdoc comments (#560) --- .jsdoc.js | 3 ++- package.json | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.jsdoc.js b/.jsdoc.js index 7db61898..052ae88f 100644 --- a/.jsdoc.js +++ b/.jsdoc.js @@ -26,7 +26,8 @@ module.exports = { destination: './docs/' }, plugins: [ - 'plugins/markdown' + 'plugins/markdown', + 'jsdoc-region-tag' ], source: { excludePattern: '(^|\\/|\\\\)[._]', diff --git a/package.json b/package.json index b669353c..02f96751 100644 --- a/package.json +++ b/package.json @@ -57,6 +57,7 @@ "js-green-licenses": "^1.0.0", "jsdoc": "^3.6.2", "jsdoc-fresh": "^1.0.1", + "jsdoc-region-tag": "^1.0.2", "linkinator": "^1.5.0", "mocha": "^6.1.4", "nock": "^11.0.0",