markdown2 :: MdASTPrinter :: print_ast
self
# Visit `self` to print the AST content fun print_ast(node: MdNode) do print "{" " * indent}{node}" indent += 1 node.visit_all(self) indent -= 1 end