Disable HTML rendering in React-Markdown

This commit is contained in:
Kyle Shockey
2017-06-01 09:42:26 -07:00
parent 1b7d94a54b
commit df47e0e956
7 changed files with 7 additions and 7 deletions

View File

@@ -102,7 +102,7 @@ export default class Oauth2 extends React.Component {
<div>
<h4>OAuth2.0 <JumpToPath path={[ "securityDefinitions", name ]} /></h4>
{ !this.state.appName ? null : <h5>Application: { this.state.appName } </h5> }
<Markdown options={{html: true, typographer: true, linkify: true, linkTarget: "_blank"}}
<Markdown options={{typographer: true, linkify: true, linkTarget: "_blank"}}
source={ schema.get("description") } />
{ isAuthorized && <h6>Authorized</h6> }