Browse Source

EAGLESIX-5473: markdown: fix newline for $limit

Kyle P Davis 10 years ago
parent
commit
a7d578dfd4
1 changed files with 1 additions and 1 deletions
  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) {