Display Tag descriptions as Markdown

This commit is contained in:
Kyle Shockey
2017-09-20 16:55:45 -07:00
parent 6d67c6dabe
commit b0a580bdc1

View File

@@ -36,6 +36,7 @@ export default class Operations extends React.Component {
const Operation = getComponent("operation")
const Collapse = getComponent("Collapse")
const Markdown = getComponent("Markdown")
let showSummary = layoutSelectors.showSummary()
let {
@@ -89,7 +90,7 @@ export default class Operations extends React.Component {
</a>
{ !tagDescription ? null :
<small>
{ tagDescription }
<Markdown source={tagDescription} />
</small>
}