FIX: when quoting add a newline

so **highlight** > quote

Does not end like:

[quote]
test
[quote]~
This commit is contained in:
Sam 2017-07-28 10:49:49 -04:00
parent ae68795d82
commit 64d54bc549

View File

@ -589,9 +589,10 @@ export default Ember.Component.extend({
if (post.length > 0) {
post = post.replace(/^\n*/, "\n\n");
} else {
post = "\n";
}
const value = pre + text + post;
const $textarea = this.$('textarea.d-editor-input');