瀏覽代碼

fix: add missing markdown converter for code block and divider

Lucas.Xu 2 年之前
父節點
當前提交
29952bc7fd

+ 2 - 0
frontend/app_flowy/packages/appflowy_editor/lib/src/plugins/markdown/decoder/document_markdown_decoder.dart

@@ -80,6 +80,8 @@ class DocumentMarkdownDecoder extends Converter<String, Document> {
           BuiltInAttributeKey.subtype: BuiltInAttributeKey.quote,
         },
       );
+    } else if (RegExp(r'^-*').stringMatch(text) == text) {
+      return Node(type: 'divider');
     }
 
     if (text.isNotEmpty) {

+ 2 - 0
frontend/app_flowy/packages/appflowy_editor/lib/src/plugins/markdown/encoder/document_markdown_encoder.dart

@@ -1,6 +1,7 @@
 import 'dart:convert';
 
 import 'package:appflowy_editor/src/core/document/document.dart';
+import 'package:appflowy_editor/src/plugins/markdown/encoder/parser/divider_node_parser.dart';
 import 'package:appflowy_editor/src/plugins/markdown/encoder/parser/image_node_parser.dart';
 import 'package:appflowy_editor/src/plugins/markdown/encoder/parser/node_parser.dart';
 import 'package:appflowy_editor/src/plugins/markdown/encoder/parser/text_node_parser.dart';
@@ -10,6 +11,7 @@ class DocumentMarkdownEncoder extends Converter<Document, String> {
     this.parsers = const [
       TextNodeParser(),
       ImageNodeParser(),
+      DividerNodeParser(),
     ],
   });
 

+ 14 - 0
frontend/app_flowy/packages/appflowy_editor/lib/src/plugins/markdown/encoder/parser/divider_node_parser.dart

@@ -0,0 +1,14 @@
+import 'package:appflowy_editor/src/core/document/node.dart';
+import 'package:appflowy_editor/src/plugins/markdown/encoder/parser/node_parser.dart';
+
+class DividerNodeParser extends NodeParser {
+  const DividerNodeParser();
+
+  @override
+  String get id => 'divider';
+
+  @override
+  String transform(Node node) {
+    return '---\n';
+  }
+}

+ 1 - 1
frontend/app_flowy/packages/appflowy_editor/lib/src/plugins/markdown/encoder/parser/text_node_parser.dart

@@ -40,7 +40,7 @@ class TextNodeParser extends NodeParser {
         }
       } else if (subtype == 'quote') {
         result = '> $markdown';
-      } else if (subtype == 'code-block') {
+      } else if (subtype == 'code_block') {
         result = '```\n$markdown\n```';
       } else if (subtype == 'bulleted-list') {
         result = '* $markdown';