blob: f1274504eb1bf42de95d99f94f12ba3421b3200e [file] [log] [blame]
David Peekf5d84732013-02-20 09:14:56 +11001// 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.
6library markdown;
7
Kevin Moore659e9c82014-03-06 12:38:29 -08008export 'src/ast.dart';
9export 'src/block_parser.dart';
10export 'src/document.dart';
11export 'src/html_renderer.dart';
12export 'src/inline_parser.dart';