aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/Content.js
diff options
context:
space:
mode:
authorQuentin Gliech <quentingliech@gmail.com>2020-02-04 22:03:21 +0100
committerQuentin Gliech <quentingliech@gmail.com>2020-02-11 20:54:37 +0100
commit022f510369688084af5bcf314a97fd332d7ee265 (patch)
tree0adf3ac82d487712f095a7692b51aaefb680be72 /webui/src/Content.js
parent6a502c145bd8f2e2e1a9c0b103c11f0433c60737 (diff)
downloadgit-bug-022f510369688084af5bcf314a97fd332d7ee265.tar.gz
webui: convert more things to typescript
Diffstat (limited to 'webui/src/Content.js')
-rw-r--r--webui/src/Content.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/webui/src/Content.js b/webui/src/Content.js
deleted file mode 100644
index 3a6900bc..00000000
--- a/webui/src/Content.js
+++ /dev/null
@@ -1,22 +0,0 @@
-import unified from 'unified';
-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()
- .use(parse)
- .use(html)
- .use(remark2react, {
- remarkReactComponents: {
- img: ImageTag,
- pre: PreTag,
- },
- });
-
- return processor.processSync(markdown).contents;
-};
-
-export default Content;