Revert back to the 'breaks' fix for newlines in markdown content

This commit is contained in:
Owen Conti
2017-07-10 19:23:18 -06:00
parent b11399a57e
commit 914b21f228
3 changed files with 2 additions and 6 deletions

View File

@@ -20,8 +20,8 @@ function Markdown({ source }) {
return <div className="markdown">
<Remarkable
options={{html: true, typographer: true, linkify: true, linkTarget: "_blank"}}
source={sanitized}
options={{html: true, typographer: true, breaks: true, linkify: true, linkTarget: "_blank"}}
source={source}
></Remarkable>
</div>
}

View File

@@ -1,3 +0,0 @@
.markdown {
white-space: pre;
}

View File

@@ -14,5 +14,4 @@
@import 'information';
@import 'authorize';
@import 'errors';
@import 'markdown';
}