Fix Markdown conversion to not add extra \n
Fixes vector-im/vector-web#2094
This commit is contained in:
parent
f0f20beae0
commit
802ec1169f
1 changed files with 6 additions and 4 deletions
|
@ -404,11 +404,13 @@ export default class MessageComposerInput extends React.Component {
|
||||||
|
|
||||||
enableRichtext(enabled: boolean) {
|
enableRichtext(enabled: boolean) {
|
||||||
if (enabled) {
|
if (enabled) {
|
||||||
let html = mdownToHtml(this.state.editorState.getCurrentContent().getPlainText());
|
const html = mdownToHtml(this.state.editorState.getCurrentContent().getPlainText());
|
||||||
this.setEditorState(this.createEditorState(enabled, RichText.HTMLtoContentState(html)));
|
const contentState = RichText.HTMLtoContentState(html);
|
||||||
|
this.setEditorState(this.createEditorState(enabled, contentState));
|
||||||
} else {
|
} else {
|
||||||
let markdown = stateToMarkdown(this.state.editorState.getCurrentContent()),
|
let markdown = stateToMarkdown(this.state.editorState.getCurrentContent());
|
||||||
contentState = ContentState.createFromText(markdown);
|
markdown = markdown.substring(0, markdown.length - 1); // stateToMarkdown tacks on an extra newline (?!?)
|
||||||
|
const contentState = ContentState.createFromText(markdown);
|
||||||
this.setEditorState(this.createEditorState(enabled, contentState));
|
this.setEditorState(this.createEditorState(enabled, contentState));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue