diff --git a/src/Renderer.js b/src/Renderer.js index eace0ad..523c058 100644 --- a/src/Renderer.js +++ b/src/Renderer.js @@ -785,17 +785,17 @@ Renderer.prototype._buildTree = function(node) { this._buildCommentsFromBlock(repeatBlock); this._buildTree(repeatBlock); - if (!this._options.noEnd) { - // \UNTIL{} - // ==> - //

- // until - //

- this._newLine(); - this._typeKeyword('until '); - var repeatCond = node.children[1]; - this._buildTree(repeatCond); - } + + // \UNTIL{} + // ==> + //

+ // until + //

+ this._newLine(); + this._typeKeyword('until '); + var repeatCond = node.children[1]; + this._buildTree(repeatCond); + break; // ------------------- Lines ------------------- case 'command':