aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/Content.js
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/Content.js')
-rw-r--r--webui/src/Content.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/webui/src/Content.js b/webui/src/Content.js
index 737c5ab2..3a6900bc 100644
--- a/webui/src/Content.js
+++ b/webui/src/Content.js
@@ -3,6 +3,7 @@ import parse from 'remark-parse';
import html from 'remark-html';
import remark2react from 'remark-react';
import ImageTag from './tag/ImageTag';
+import PreTag from './tag/PreTag';
const Content = ({ markdown }) => {
const processor = unified()
@@ -11,6 +12,7 @@ const Content = ({ markdown }) => {
.use(remark2react, {
remarkReactComponents: {
img: ImageTag,
+ pre: PreTag,
},
});