feat: add MarkdownContent component

This commit is contained in:
Jesko Steinberg
2020-10-29 13:14:15 +01:00
parent bf8a64c29b
commit 357f42b6a1
7 changed files with 273 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
---
'@backstage/core': minor
---
Adds the MarkdownContent component to render and display markdown input.
```
<MarkdownContent content={markdown} />
```
Render and display the github flavored markdown [GFM](https://github.github.com/gfm/) input:
```
<MarkdownContent content={markdownGithubFlavored} enableGfm />
```