diff --git a/src/ui/component/channelAbout/view.jsx b/src/ui/component/channelAbout/view.jsx
index 82e8dab90..9d7982b54 100644
--- a/src/ui/component/channelAbout/view.jsx
+++ b/src/ui/component/channelAbout/view.jsx
@@ -1,5 +1,6 @@
// @flow
import React, { Fragment } from 'react';
+import MarkdownPreview from 'component/common/markdown-preview';
type Props = {
description: ?string,
@@ -16,7 +17,11 @@ function ChannelContent(props: Props) {
{!showAbout &&
{__('Nothing here yet')}
}
{showAbout && (
- {description && {description}
}
+ {description && (
+
+
+
+ )}
{email && (
{__('Contact')}
@@ -26,7 +31,9 @@ function ChannelContent(props: Props) {
{website && (
{__('Site')}
- {website}
+
+
+
)}
diff --git a/src/ui/scss/component/_media.scss b/src/ui/scss/component/_media.scss
index b4321fc29..5f4139fc7 100644
--- a/src/ui/scss/component/_media.scss
+++ b/src/ui/scss/component/_media.scss
@@ -260,7 +260,6 @@
.media__info-text {
font-size: 1.15rem;
- word-break: break-all;
&:not(:last-of-type) {
margin-bottom: var(--spacing-vertical-large);