Skip to content

Commit b0a580b

Browse files
author
Kyle Shockey
committed
Display Tag descriptions as Markdown
1 parent 6d67c6d commit b0a580b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/core/components/operations.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ export default class Operations extends React.Component {
3636

3737
const Operation = getComponent("operation")
3838
const Collapse = getComponent("Collapse")
39+
const Markdown = getComponent("Markdown")
3940

4041
let showSummary = layoutSelectors.showSummary()
4142
let {
@@ -89,7 +90,7 @@ export default class Operations extends React.Component {
8990
</a>
9091
{ !tagDescription ? null :
9192
<small>
92-
{ tagDescription }
93+
<Markdown source={tagDescription} />
9394
</small>
9495
}
9596

0 commit comments

Comments
 (0)