Yuki Takei 3 лет назад
Родитель
Сommit
202c119533
1 измененных файлов с 1 добавлено и 3 удалено
  1. 1 3
      packages/remark-drawio-plugin/src/utils/embed.ts

+ 1 - 3
packages/remark-drawio-plugin/src/utils/embed.ts

@@ -83,6 +83,7 @@ export const generateMxgraphData = (code: string): string => {
 `;
 `;
   }
   }
 
 
+  // see options: https://drawio.freshdesk.com/support/solutions/articles/16000042542-embed-html
   const mxGraphData = {
   const mxGraphData = {
     editable: false,
     editable: false,
     highlight: '#0000ff',
     highlight: '#0000ff',
@@ -91,9 +92,6 @@ export const generateMxgraphData = (code: string): string => {
     edit: null,
     edit: null,
     resize: true,
     resize: true,
     lightbox: 'false',
     lightbox: 'false',
-    // "check-visible-state": false,
-    // "auto-fit": false,
-    // move: false,
     xml,
     xml,
   };
   };