summaryrefslogtreecommitdiff
path: root/js/bin/commonmark
diff options
context:
space:
mode:
Diffstat (limited to 'js/bin/commonmark')
-rwxr-xr-xjs/bin/commonmark2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/bin/commonmark b/js/bin/commonmark
index 72ad344..4fcb09d 100755
--- a/js/bin/commonmark
+++ b/js/bin/commonmark
@@ -16,7 +16,7 @@ for (var i = 2; i < process.argv.length; i++) {
var arg = process.argv[i];
if (arg == '--ast') {
renderer = { render: function(x) {
- return util.inspect(x.toAST(), null, Infinity, true) + '\n';
+ return util.inspect(x.toAST(), null, 20, true) + '\n';
} };
} else if (arg == '--sourcepos') {
options.sourcepos = true;