aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-docs/src/ts/components/type_definition.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/type_definition.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/type_definition.tsx')
-rw-r--r--packages/react-docs/src/ts/components/type_definition.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/react-docs/src/ts/components/type_definition.tsx b/packages/react-docs/src/ts/components/type_definition.tsx
index e3cd218f9..68ef4c465 100644
--- a/packages/react-docs/src/ts/components/type_definition.tsx
+++ b/packages/react-docs/src/ts/components/type_definition.tsx
@@ -4,6 +4,7 @@ import * as React from 'react';
import { DocsInfo } from '../docs_info';
import { CustomType, CustomTypeChild, KindString, TypeDocTypes } from '../types';
+import { constants } from '../utils/constants';
import { utils } from '../utils/utils';
import { Comment } from './comment';
@@ -111,7 +112,9 @@ export class TypeDefinition extends React.Component<TypeDefinitionProps, TypeDef
/>
<div style={{ fontSize: 16 }}>
<pre>
- <code className="hljs">{codeSnippet}</code>
+ <code className={`hljs ${constants.TYPE_TO_SYNTAX[this.props.docsInfo.type]}`}>
+ {codeSnippet}
+ </code>
</pre>
</div>
<div style={{ maxWidth: 620 }}>