diff --git a/docs/devGuide/development/writingPlugins.md b/docs/devGuide/development/writingPlugins.md index f6ceaa930..7af6a5f52 100644 --- a/docs/devGuide/development/writingPlugins.md +++ b/docs/devGuide/development/writingPlugins.md @@ -70,6 +70,10 @@ module.exports = { }, }; ``` + + +Remember to update `dg-site.json`, `site.json`, and `ug-site.json` in the docs folder when updating the requirements for `site.json`. + ```js // site.json diff --git a/docs/dg-site.json b/docs/dg-site.json index fde8337b5..b9a836e26 100644 --- a/docs/dg-site.json +++ b/docs/dg-site.json @@ -27,11 +27,22 @@ ], "plugins" : [ "filterTags", - "codeBlockCopyButtons" + "mathDelimiters", + "codeBlockWrapButtons", + "web3Form", + "codeBlockCopyButtons", + "dataTable", + "mermaid" ], "pluginsContext" : { "filterTags" : { "tags": ["environment--dg"] + }, + "mathDelimiters": { + "delimiters": ["beg_end"] + }, + "web3Form": { + "accessKey": [""] } }, "deploy": { diff --git a/docs/ug-site.json b/docs/ug-site.json index 7954ca8dc..41efd4cba 100644 --- a/docs/ug-site.json +++ b/docs/ug-site.json @@ -21,7 +21,11 @@ "plugins" : [ "filterTags", "mathDelimiters", - "codeBlockCopyButtons" + "codeBlockWrapButtons", + "web3Form", + "codeBlockCopyButtons", + "dataTable", + "mermaid" ], "pluginsContext" : { "filterTags" : { @@ -29,6 +33,9 @@ }, "mathDelimiters": { "delimiters": ["beg_end"] + }, + "web3Form": { + "accessKey": [""] } }, "headingIndexingLevel": 6,