cmark

My personal build of CMark ✏️

Commit
9bf2a0b1bcaff8f6c00d68cf40a99e4adebcb99b
Parent
675c2640755ecf3fa7978e16d61261f64fd75e65
Author
John MacFarlane <fiddlosopher@gmail.com>
Date

Don't include string_content in output of toAST().

Diffstat

1 file changed, 1 insertion, 2 deletions

Status File Name N° Changes Insertions Deletions
Modified js/lib/node.js 3 1 2
diff --git a/js/lib/node.js b/js/lib/node.js
@@ -167,8 +167,7 @@ Node.prototype.toAST = function() {
     var cur;
     var result = { t: this.t };
 
-    var propsToShow = ['t', 'c', 'list_data', 'string_content',
-                       'pos', 'info', 'level'];
+    var propsToShow = ['t', 'c', 'list_data', 'pos', 'info', 'level'];
 
     for (var i = 0; i < propsToShow.length; i++) {
         var prop = propsToShow[i];