summaryrefslogtreecommitdiff
path: root/js/bin
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-09 19:55:29 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-09 19:55:29 -0800
commit054fea748f5b6aae9043925abf9b66991cd51887 (patch)
treec50cbf2b3d068c1a28b7c1a2d945fb99998d0704 /js/bin
parent85dc5b4171bfd71b0737aed7039deb5cc750a405 (diff)
Put limit on AST display as string.
(AST itself has no nesting limits. BUt this prevents a crash due to recursion in util.inspect.) See #272.
Diffstat (limited to 'js/bin')
-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;