Browse Source

clean code

Yuki Takei 3 years ago
parent
commit
a59d5e81b8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/app/src/components/PageEditor/MarkdownDrawioUtil.js

+ 2 - 2
packages/app/src/components/PageEditor/MarkdownDrawioUtil.js

@@ -100,9 +100,9 @@ class MarkdownDrawioUtil {
       const bod = this.getBod(editor);
       const eod = this.getEod(editor);
 
-      // skip block begin sesion("::: drawio")
+      // skip block begin sesion("``` drawio")
       bod.line++;
-      // skip block end sesion(":::")
+      // skip block end sesion("```")
       eod.line--;
       eod.ch = editor.getDoc().getLine(eod.line).length;