aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/containers/web3_wrapper_documentation.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-08-02 03:00:45 +0800
committerFabio Berger <me@fabioberger.com>2018-08-02 03:00:45 +0800
commit2494af99aad4dd58c0d4e647dedf72946cb3c20b (patch)
treed2c20e41b4cd11874a222897970b2597b2e03092 /packages/website/ts/containers/web3_wrapper_documentation.ts
parente5b93d1f0292cb6cc38d3f92d623b27cba6ac233 (diff)
downloaddexon-0x-contracts-2494af99aad4dd58c0d4e647dedf72946cb3c20b.tar
dexon-0x-contracts-2494af99aad4dd58c0d4e647dedf72946cb3c20b.tar.gz
dexon-0x-contracts-2494af99aad4dd58c0d4e647dedf72946cb3c20b.tar.bz2
dexon-0x-contracts-2494af99aad4dd58c0d4e647dedf72946cb3c20b.tar.lz
dexon-0x-contracts-2494af99aad4dd58c0d4e647dedf72946cb3c20b.tar.xz
dexon-0x-contracts-2494af99aad4dd58c0d4e647dedf72946cb3c20b.tar.zst
dexon-0x-contracts-2494af99aad4dd58c0d4e647dedf72946cb3c20b.zip
Prefix menu and sections with markdown as that is all the should now be defined
Diffstat (limited to 'packages/website/ts/containers/web3_wrapper_documentation.ts')
-rw-r--r--packages/website/ts/containers/web3_wrapper_documentation.ts8
1 files changed, 2 insertions, 6 deletions
diff --git a/packages/website/ts/containers/web3_wrapper_documentation.ts b/packages/website/ts/containers/web3_wrapper_documentation.ts
index 1a4101f5d..b015fd0d9 100644
--- a/packages/website/ts/containers/web3_wrapper_documentation.ts
+++ b/packages/website/ts/containers/web3_wrapper_documentation.ts
@@ -17,8 +17,6 @@ const InstallationMarkdownV1 = require('md/docs/web3_wrapper/installation');
const docSections = {
introduction: 'introduction',
installation: 'installation',
- web3Wrapper: 'web3Wrapper',
- types: docConstants.TYPES_SECTION_NAME,
};
const docsInfoConfig: DocsInfoConfig = {
@@ -26,11 +24,9 @@ const docsInfoConfig: DocsInfoConfig = {
type: SupportedDocJson.TypeDoc,
displayName: 'Web3Wrapper',
packageUrl: 'https://github.com/0xProject/0x-monorepo',
- menu: {
+ markdownMenu: {
introduction: [docSections.introduction],
install: [docSections.installation],
- web3Wrapper: [docSections.web3Wrapper],
- types: [docSections.types],
},
sectionNameToMarkdownByVersion: {
'0.0.1': {
@@ -38,7 +34,7 @@ const docsInfoConfig: DocsInfoConfig = {
[docSections.installation]: InstallationMarkdownV1,
},
},
- sections: docSections,
+ markdownSections: docSections,
typeConfigs: {
typeNameToExternalLink: {
Web3: constants.URL_WEB3_DOCS,