Keep newlines in xml (#1397)
This commit is contained in:
parent
553170b77a
commit
f690320fb9
2 changed files with 1 additions and 2 deletions
|
@ -91,7 +91,7 @@ const StatusContent = React.createClass({
|
|||
const { status } = this.props;
|
||||
const { hidden } = this.state;
|
||||
|
||||
const content = { __html: emojify(status.get('content')) };
|
||||
const content = { __html: emojify(status.get('content')).replace(/\n/g, '') };
|
||||
const spoilerContent = { __html: emojify(escapeTextContentForBrowser(status.get('spoiler_text', ''))) };
|
||||
const directionStyle = { direction: 'ltr' };
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue