Skip to content

Commit 6a8f821

Browse files
authored
Merge pull request #3690 from shockey/bug/3636-tag-description-markdown
Display Tag descriptions as Markdown
2 parents 6d67c6d + b0a580b commit 6a8f821

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)