| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of markdown; | 5 part of markdown; |
| 6 | 6 |
| 7 String renderToHtml(List<Node> nodes) => new HtmlRenderer().render(nodes); | 7 String renderToHtml(List<Node> nodes) => new HtmlRenderer().render(nodes); |
| 8 | 8 |
| 9 /// Translates a parsed AST to HTML. | 9 /// Translates a parsed AST to HTML. |
| 10 class HtmlRenderer implements NodeVisitor { | 10 class HtmlRenderer implements NodeVisitor { |
| 11 static final _BLOCK_TAGS = new RegExp( | 11 static final _BLOCK_TAGS = new RegExp( |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 } else { | 53 } else { |
| 54 buffer.add('>'); | 54 buffer.add('>'); |
| 55 return true; | 55 return true; |
| 56 } | 56 } |
| 57 } | 57 } |
| 58 | 58 |
| 59 void visitElementAfter(Element element) { | 59 void visitElementAfter(Element element) { |
| 60 buffer.add('</${element.tag}>'); | 60 buffer.add('</${element.tag}>'); |
| 61 } | 61 } |
| 62 } | 62 } |
| OLD | NEW |