Skip to content

Commit

Permalink
Update UG and DG site json file to include new plugins (#2546)
Browse files Browse the repository at this point in the history
  • Loading branch information
EltonGohJH committed May 2, 2024
1 parent b011f06 commit d65c649
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/devGuide/development/writingPlugins.md
Expand Up @@ -70,6 +70,10 @@ module.exports = {
},
};
```
<box type="warning">

Remember to update `dg-site.json`, `site.json`, and `ug-site.json` in the docs folder when updating the requirements for `site.json`.
</box>

```js
// site.json
Expand Down
13 changes: 12 additions & 1 deletion docs/dg-site.json
Expand Up @@ -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": {
Expand Down
9 changes: 8 additions & 1 deletion docs/ug-site.json
Expand Up @@ -21,14 +21,21 @@
"plugins" : [
"filterTags",
"mathDelimiters",
"codeBlockCopyButtons"
"codeBlockWrapButtons",
"web3Form",
"codeBlockCopyButtons",
"dataTable",
"mermaid"
],
"pluginsContext" : {
"filterTags" : {
"tags": ["environment--ug"]
},
"mathDelimiters": {
"delimiters": ["beg_end"]
},
"web3Form": {
"accessKey": [""]
}
},
"headingIndexingLevel": 6,
Expand Down

0 comments on commit d65c649

Please sign in to comment.