David Peek | f5d8473 | 2013-02-20 09:14:56 +1100 | [diff] [blame] | 1 | // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 | |
| 5 | /// Parses text in a markdown-like format and renders to HTML. |
| 6 | library markdown; |
| 7 | |
Kevin Moore | 659e9c8 | 2014-03-06 12:38:29 -0800 | [diff] [blame^] | 8 | export 'src/ast.dart'; |
| 9 | export 'src/block_parser.dart'; |
| 10 | export 'src/document.dart'; |
| 11 | export 'src/html_renderer.dart'; |
| 12 | export 'src/inline_parser.dart'; |