diff --git a/client/app/static/simple_article.jsx b/client/app/static/simple_article.jsx
index 303fae9..d8136e0 100644
--- a/client/app/static/simple_article.jsx
+++ b/client/app/static/simple_article.jsx
@@ -1,9 +1,7 @@
import React from 'react';
import {Link} from 'react-router';
import Loader from './loader.jsx';
-import Error from './error.jsx';
import Alert from 'react-s-alert';
-var Remarkable = require('remarkable');
class SimpleArticle extends React.Component {
constructor(props) {
@@ -34,15 +32,11 @@ class SimpleArticle extends React.Component {
}
getRawMarkupBody() {
- var md = new Remarkable();
- return { __html: md.render(this.state.article.body) };
+ return { __html: this.state.article.body };
}
render () {
- if(this.state.error) {
- return