diff --git a/exec/load/wiki-markup.js b/exec/load/wiki-markup.js index 117c585d2cde58aa6c6e2df15ad63c105b58eab6..c25e8309233ce6c4af7e1b75fd6e10fb857d30c3 100644 --- a/exec/load/wiki-markup.js +++ b/exec/load/wiki-markup.js @@ -284,7 +284,7 @@ WikiMarkup.prototype.render_line_console = function (line) { var match; const self = this; - var ret = word_wrap(this.render_text_console(line), this.columns); + var ret = word_wrap(this.render_text_console(line), this.columns).replace(/\s*$/, ''); // Ordered and unordered lists match = ret.match(/^(\s*)(\*|-)\s+(.+)$/m);