浏览代码

EAGLESIX-5473: markdown: fix newline for $limit

Kyle P Davis 10 年之前
父节点
当前提交
a7d578dfd4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/extras/markdown.js

+ 1 - 1
lib/extras/markdown.js

@@ -147,7 +147,7 @@ function toListItem(str, i) {
 		};
 
 		documentSources.LimitDocumentSource.prototype.getMarkdown = function(level) {
-			return getIndentStr(level) + "limit to only `" + this.limit + "` output docs";
+			return getIndentStr(level) + "limit to only `" + this.limit + "` output docs\n";
 		};
 
 		documentSources.MatchDocumentSource.prototype.getMarkdown = function(level) {