From a2f84565c30a78ed30ed1fa99612a8d7d16ca4b4 Mon Sep 17 00:00:00 2001 From: squidfunk Date: Sat, 5 Mar 2022 13:52:56 +0100 Subject: [PATCH] Updated JSON schema --- docs/schema/plugins/privacy.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/schema/plugins/privacy.json b/docs/schema/plugins/privacy.json index 048bf37e6..62c0e851d 100644 --- a/docs/schema/plugins/privacy.json +++ b/docs/schema/plugins/privacy.json @@ -45,6 +45,18 @@ "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#externals-directory", "type": "string", "default": "assets/externals" + }, + "externals_exclude": { + "title": "External assets to be excluded", + "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#externals-exclude", + "type": "array", + "items": { + "title": "External assets matching this pattern will not be bundled", + "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#externals-exclude", + "pattern": ".*" + }, + "uniqueItems": true, + "minItems": 1 } }, "additionalProperties": false