zefyr

convert.dart 490B

1234567891011121314
  1. // Copyright (c) 2018, the Zefyr 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. /// Provides codecs to convert Notus documents to other formats.
  5. library notus.convert;
  6. import 'src/convert/markdown.dart';
  7. export 'src/convert/markdown.dart';
  8. /// Markdown codec for Notus documents.
  9. const NotusMarkdownCodec notusMarkdown = const NotusMarkdownCodec();