zefyr

1234567891011121314151617181920
  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. /// Rich text document model for Zefyr editor.
  5. library notus;
  6. export 'src/document.dart';
  7. export 'src/history.dart';
  8. export 'src/search.dart' show SearchResultEntity;
  9. export 'src/document/attributes.dart';
  10. export 'src/document/block.dart';
  11. export 'src/document/leaf.dart';
  12. export 'src/document/line.dart';
  13. export 'src/document/node.dart';
  14. export 'src/heuristics.dart';
  15. export 'src/heuristics/delete_rules.dart';
  16. export 'src/heuristics/format_rules.dart';
  17. export 'src/heuristics/insert_rules.dart';