aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-docs/src/ts/components/method_block.tsx
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-03-07 22:32:37 +0800
committerFabio Berger <me@fabioberger.com>2018-03-07 22:32:37 +0800
commit238f3c89a7cfc3c8d6941aac4e108c13f84c6647 (patch)
tree88a97cdf791461b7c278ded2386709204278c669 /packages/react-docs/src/ts/components/method_block.tsx
parent6e724eb8a5f2431e7dda77102e63316cdd820139 (diff)
downloaddexon-sol-tools-238f3c89a7cfc3c8d6941aac4e108c13f84c6647.tar
dexon-sol-tools-238f3c89a7cfc3c8d6941aac4e108c13f84c6647.tar.gz
dexon-sol-tools-238f3c89a7cfc3c8d6941aac4e108c13f84c6647.tar.bz2
dexon-sol-tools-238f3c89a7cfc3c8d6941aac4e108c13f84c6647.tar.lz
dexon-sol-tools-238f3c89a7cfc3c8d6941aac4e108c13f84c6647.tar.xz
dexon-sol-tools-238f3c89a7cfc3c8d6941aac4e108c13f84c6647.tar.zst
dexon-sol-tools-238f3c89a7cfc3c8d6941aac4e108c13f84c6647.zip
Make sure we apply the appropriate syntax highlighting depending on the language of the docs
Diffstat (limited to 'packages/react-docs/src/ts/components/method_block.tsx')
-rw-r--r--packages/react-docs/src/ts/components/method_block.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/react-docs/src/ts/components/method_block.tsx b/packages/react-docs/src/ts/components/method_block.tsx
index 029662b3f..44a1db8af 100644
--- a/packages/react-docs/src/ts/components/method_block.tsx
+++ b/packages/react-docs/src/ts/components/method_block.tsx
@@ -4,6 +4,7 @@ import * as React from 'react';
import { DocsInfo } from '../docs_info';
import { Parameter, SolidityMethod, TypeDefinitionByName, TypescriptMethod } from '../types';
+import { constants } from '../utils/constants';
import { typeDocUtils } from '../utils/typedoc_utils';
import { Comment } from './comment';
@@ -70,7 +71,7 @@ export class MethodBlock extends React.Component<MethodBlockProps, MethodBlockSt
</div>
</div>
)}
- <code className="hljs">
+ <code className={`hljs ${constants.TYPE_TO_SYNTAX[this.props.docsInfo.type]}`}>
<MethodSignature
method={method}
sectionName={this.props.sectionName}