From b3c31fced63701a8e70b5f0ce3373466626ee960 Mon Sep 17 00:00:00 2001 From: "Benjamin E. Coe" Date: Wed, 13 Nov 2019 12:45:53 -0800 Subject: [PATCH] fix(docs): snippets are now replaced in jsdoc comments (#74) --- .jsdoc.js | 3 ++- package.json | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.jsdoc.js b/.jsdoc.js index 52f4bb3..51be5a4 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 f47af39..042382f 100644 --- a/package.json +++ b/package.json @@ -34,6 +34,7 @@ "eslint-plugin-prettier": "^3.0.0", "jsdoc": "^3.6.2", "jsdoc-fresh": "^1.0.1", + "jsdoc-region-tag": "^1.0.2", "linkinator": "^1.5.0", "mocha": "^6.0.0", "nyc": "^14.1.1",