diff --git a/app/appearance/langs/en_US.json b/app/appearance/langs/en_US.json index 0f957faaecc..ab0e66e77f8 100644 --- a/app/appearance/langs/en_US.json +++ b/app/appearance/langs/en_US.json @@ -1,4 +1,8 @@ { + "confirmDeleteTip": "Are you sure to delete ${x}?
After deletion, it can be restored in [Data History], retained ${y} days according to [Settings - Editor - History Retention Days]", + "newView": "Add View", + "newCol": "Add column", + "newRow": "Add entry", "enterKey": "Enter", "doubleClick": "Double Click", "click": "Click", diff --git a/app/appearance/langs/es_ES.json b/app/appearance/langs/es_ES.json index 25df974542a..e3372cd27cf 100644 --- a/app/appearance/langs/es_ES.json +++ b/app/appearance/langs/es_ES.json @@ -1,4 +1,8 @@ { + "confirmDeleteTip": "¿Está seguro de eliminar ${x}?
Después de la eliminación, se puede restaurar en [Historial de datos] y se conserva ${y } días según [Configuración - Editor - Días de retención del historial]", + "newView": "Agregar vista", + "newCol": "Agregar columna", + "newRow": "Agregar entrada", "enterKey": "Entrar", "doubleClick": "Doble clic", "click": "Hacer clic", diff --git a/app/appearance/langs/fr_FR.json b/app/appearance/langs/fr_FR.json index d8b12e1a875..4564610c23a 100644 --- a/app/appearance/langs/fr_FR.json +++ b/app/appearance/langs/fr_FR.json @@ -1,4 +1,8 @@ { + "confirmDeleteTip": "Êtes-vous sûr de supprimer ${x} ?
Après la suppression, il peut être restauré dans [Historique des données], conservé ${y } jours selon [Paramètres - Éditeur - Jours de rétention de l'historique]", + "newView": "Ajouter une vue", + "newCol": "Ajouter une colonne", + "newRow": "Ajouter une entrée", "enterKey": "Entrer", "doubleClick": "Double-clic", "click": "Cliquez sur", diff --git a/app/appearance/langs/ja_JP.json b/app/appearance/langs/ja_JP.json index 7da8cdd7774..0015ddb34ba 100644 --- a/app/appearance/langs/ja_JP.json +++ b/app/appearance/langs/ja_JP.json @@ -1,4 +1,8 @@ { + "confirmDeleteTip": "${x} を削除してもよろしいですか?
削除後は [データ履歴] で復元でき、${y} は保持されます。 [設定 - エディター - 履歴の保存日数] による日数", + "newView": "ビューを追加", + "newCol": "列を追加", + "newRow": "エントリを追加", "enterKey": "入力", "doubleClick": "ダブルクリック", "click": "クリック", diff --git a/app/appearance/langs/zh_CHT.json b/app/appearance/langs/zh_CHT.json index 144cee6dcd2..c3cf96ba38e 100644 --- a/app/appearance/langs/zh_CHT.json +++ b/app/appearance/langs/zh_CHT.json @@ -1,4 +1,8 @@ { + "confirmDeleteTip": "確定刪除${x} 嗎?
刪除後可在 [資料歷史] 中恢復,按 [設定- 編輯器- 歷史保留天數] 保留${y} 天", + "newView": "新增視圖", + "newCol": "新增列", + "newRow": "新增項目", "enterKey": "回車", "doubleClick": "雙擊", "click": "點擊", diff --git a/app/appearance/langs/zh_CN.json b/app/appearance/langs/zh_CN.json index 16c6979a906..ec93e965cde 100644 --- a/app/appearance/langs/zh_CN.json +++ b/app/appearance/langs/zh_CN.json @@ -1,4 +1,10 @@ { + "andSubFile": "确定删除 ${x} 及其 ${y} 个子文档吗?", + "confirmDeleteTip": "确定删除 ${x} 吗?", + "rollbackTip": "删除后可在 [数据历史] 中恢复,按 [设置 - 编辑器 - 历史保留天数] 保留 ${x} 天", + "newView": "添加视图", + "newCol": "添加列", + "newRow": "添加条目", "enterKey": "回车", "doubleClick": "双击", "click": "点击", @@ -682,7 +688,6 @@ "customEmoji": "添加自定义表情", "customEmojiTip": "打开 Emoji 文件夹 放入图片后并点击刷新按钮", "recentEmoji": "常用表情", - "andSubFile": "及其 x 个子文档", "changeIcon": "修改图标", "addIcon": "添加图标", "includeSubFile": "\n包含 x 个子文档", diff --git a/app/electron/main.js b/app/electron/main.js index 045dcc9b5da..c724ec7b90c 100644 --- a/app/electron/main.js +++ b/app/electron/main.js @@ -268,8 +268,9 @@ const initMainWindow = () => { height: defaultHeight, }, oldWindowState); - // writeLog("windowStat [width=" + windowState.width + ", height=" + windowState.height + "], default [width=" + defaultWidth + ", height=" + defaultHeight + "], workArea [width=" + workArea.width + ", height=" + workArea.height + "]"); + writeLog("windowStat [x=" + windowState.x + ", y=" + windowState.y + ", width=" + windowState.width + ", height=" + windowState.height + "], default [width=" + defaultWidth + ", height=" + defaultHeight + "], workArea [width=" + workArea.width + ", height=" + workArea.height + "]"); + let resetToCenter = false let x = windowState.x; let y = windowState.y; if (workArea) { @@ -278,25 +279,22 @@ const initMainWindow = () => { windowState.width = Math.min(defaultWidth, workArea.width); windowState.height = Math.min(defaultHeight, workArea.height); } - if (x > workArea.width) { - x = 0; - } - if (y > workArea.height) { - y = 0; + + if (x >= workArea.width * 0.8 || y >= workArea.height * 0.8) { + resetToCenter = true; } } + + if (x < 0 || y < 0) { + resetToCenter = true; + } + if (windowState.width < 493) { windowState.width = 493; } if (windowState.height < 376) { windowState.height = 376; } - if (x < 0) { - x = 0; - } - if (y < 0) { - y = 0; - } // 创建主窗体 const currentWindow = new BrowserWindow({ @@ -321,7 +319,7 @@ const initMainWindow = () => { }); remote.enable(currentWindow.webContents); - windowStateInitialized ? currentWindow.setPosition(x, y) : currentWindow.center(); + resetToCenter ? currentWindow.center() : currentWindow.setPosition(x, y); currentWindow.webContents.userAgent = "SiYuan/" + appVer + " https://b3log.org/siyuan Electron " + currentWindow.webContents.userAgent; // set proxy diff --git a/app/guide/20210808180117-6v0mkxr/20200923234011-ieuun1p/20210808180303-xaduj2o/20200924100950-9op5xi1.sy b/app/guide/20210808180117-6v0mkxr/20200923234011-ieuun1p/20210808180303-xaduj2o/20200924100950-9op5xi1.sy index f9b7c07f901..40fbb0e5532 100644 --- a/app/guide/20210808180117-6v0mkxr/20200923234011-ieuun1p/20210808180303-xaduj2o/20200924100950-9op5xi1.sy +++ b/app/guide/20210808180117-6v0mkxr/20200923234011-ieuun1p/20210808180303-xaduj2o/20200924100950-9op5xi1.sy @@ -7,7 +7,7 @@ "id": "20200924100950-9op5xi1", "title": "Shortcuts", "type": "doc", - "updated": "20240430215520" + "updated": "20240517003750" }, "Children": [ { @@ -16,7 +16,7 @@ "HeadingLevel": 2, "Properties": { "id": "20201227133532-44ubczo", - "updated": "20231030110257" + "updated": "20240517003750" }, "Children": [ { @@ -2306,7 +2306,7 @@ "HeadingLevel": 2, "Properties": { "id": "20210826183314-2tdx7d1", - "updated": "20231030110257" + "updated": "20240517003750" }, "Children": [ { @@ -3040,7 +3040,7 @@ "HeadingLevel": 2, "Properties": { "id": "20210106154056-koo4wdj", - "updated": "20231030110255" + "updated": "20240517003750" }, "Children": [ { @@ -3059,7 +3059,7 @@ "HeadingLevel": 3, "Properties": { "id": "20210106154319-v9tt3e2", - "updated": "20231030110255" + "updated": "20240517003750" }, "Children": [ { @@ -3079,7 +3079,7 @@ "Properties": { "colgroup": "||", "id": "20240112150534-wiik5sl", - "updated": "20240430215520" + "updated": "20240516235223" }, "Children": [ { @@ -3220,16 +3220,7 @@ }, { "Type": "NodeText", - "Data": "​ / " - }, - { - "Type": "NodeTextMark", - "TextMarkType": "kbd", - "TextMarkTextContent": "Click+Tag" - }, - { - "Type": "NodeText", - "Data": "​" + "Data": "​ / Click Tag" } ] }, @@ -7260,7 +7251,8 @@ "Type": "NodeHeading", "HeadingLevel": 3, "Properties": { - "id": "20210106154319-d0mxz1p" + "id": "20210106154319-d0mxz1p", + "updated": "20240517003750" }, "Children": [ { @@ -7284,7 +7276,7 @@ "Properties": { "colgroup": "||", "id": "20210106154319-v6ksqnu", - "updated": "20221210173840" + "updated": "20240517001934" }, "Children": [ { @@ -7364,7 +7356,22 @@ }, { "Type": "NodeTableCell", - "Data": "td" + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "Text input is required after the " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": ":" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] } ] }, @@ -7913,25 +7920,44 @@ { "Type": "NodeTableCell", "Data": "td", + "Properties": { + "colspan": "1" + }, "Children": [ + { + "Type": "NodeKramdownSpanIAL", + "Data": "{: colspan=\"1\"}" + }, { "Type": "NodeText", - "Data": "Dividing line" + "Data": "Font setting" } ] }, { "Type": "NodeTableCell", "Data": "td", + "Properties": { + "colspan": "1" + }, "Children": [ + { + "Type": "NodeKramdownSpanIAL", + "Data": "{: colspan=\"1\"}" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "Ctrl+Alt+X" + }, { "Type": "NodeText", - "Data": "​" + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "---" + "TextMarkTextContent": "⌥⌘X" }, { "Type": "NodeText", @@ -7941,7 +7967,16 @@ }, { "Type": "NodeTableCell", - "Data": "td" + "Data": "td", + "Properties": { + "colspan": "1" + }, + "Children": [ + { + "Type": "NodeKramdownSpanIAL", + "Data": "{: colspan=\"1\"}" + } + ] } ] }, @@ -7955,7 +7990,7 @@ "Children": [ { "Type": "NodeText", - "Data": "Code" + "Data": "Recently used fonts" } ] }, @@ -7970,7 +8005,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+G" + "TextMarkTextContent": "Alt+X" }, { "Type": "NodeText", @@ -7979,7 +8014,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘G" + "TextMarkTextContent": "⌥X" }, { "Type": "NodeText", @@ -7989,7 +8024,17 @@ }, { "Type": "NodeTableCell", - "Data": "td" + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "Sets the selection to the most recently used font style" + }, + { + "Type": "NodeBr", + "Data": "br" + } + ] } ] }, @@ -8003,7 +8048,7 @@ "Children": [ { "Type": "NodeText", - "Data": "Blockquote" + "Data": "Dividing line" } ] }, @@ -8018,7 +8063,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "\u0026gt;" + "TextMarkTextContent": "---" }, { "Type": "NodeText", @@ -8042,7 +8087,7 @@ "Children": [ { "Type": "NodeText", - "Data": "Link" + "Data": "Code" } ] }, @@ -8057,7 +8102,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+K" + "TextMarkTextContent": "Ctrl+G" }, { "Type": "NodeText", @@ -8066,7 +8111,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘K" + "TextMarkTextContent": "⌘G" }, { "Type": "NodeText", @@ -8087,26 +8132,16 @@ { "Type": "NodeTableCell", "Data": "td", - "Properties": { - "colspan": "1" - }, "Children": [ { "Type": "NodeText", - "Data": "Font setting" + "Data": "Blockquote" } ] }, - { - "Type": "NodeKramdownSpanIAL", - "Data": "{: colspan=\"1\"}" - }, { "Type": "NodeTableCell", "Data": "td", - "Properties": { - "colspan": "1" - }, "Children": [ { "Type": "NodeText", @@ -8115,16 +8150,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Alt+X" - }, - { - "Type": "NodeText", - "Data": "​ / " - }, - { - "Type": "NodeTextMark", - "TextMarkType": "kbd", - "TextMarkTextContent": "⌥⌘X" + "TextMarkTextContent": "\u0026gt;" }, { "Type": "NodeText", @@ -8132,20 +8158,9 @@ } ] }, - { - "Type": "NodeKramdownSpanIAL", - "Data": "{: colspan=\"1\"}" - }, { "Type": "NodeTableCell", - "Data": "td", - "Properties": { - "colspan": "1" - } - }, - { - "Type": "NodeKramdownSpanIAL", - "Data": "{: colspan=\"1\"}" + "Data": "td" } ] }, @@ -8159,7 +8174,7 @@ "Children": [ { "Type": "NodeText", - "Data": "Recently used fonts" + "Data": "Link" } ] }, @@ -8174,7 +8189,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+X" + "TextMarkTextContent": "Ctrl+K" }, { "Type": "NodeText", @@ -8183,7 +8198,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥X" + "TextMarkTextContent": "⌘K" }, { "Type": "NodeText", @@ -8193,13 +8208,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "Children": [ - { - "Type": "NodeBr", - "Data": "br" - } - ] + "Data": "td" } ] }, @@ -8228,7 +8237,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Enter```" + "TextMarkTextContent": "```Enter" }, { "Type": "NodeText", @@ -8474,7 +8483,8 @@ "Type": "NodeHeading", "HeadingLevel": 3, "Properties": { - "id": "20210106154319-6lhdzmm" + "id": "20210106154319-6lhdzmm", + "updated": "20240517003750" }, "Children": [ { @@ -8805,7 +8815,8 @@ "Type": "NodeHeading", "HeadingLevel": 3, "Properties": { - "id": "20210106154319-ans1gna" + "id": "20210106154319-ans1gna", + "updated": "20240517003750" }, "Children": [ { @@ -8829,7 +8840,7 @@ "Properties": { "colgroup": "||", "id": "20210106154319-4oe7doq", - "updated": "20240428230834" + "updated": "20240517003750" }, "Children": [ { @@ -9053,7 +9064,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "click" + "TextMarkTextContent": "Click" }, { "Type": "NodeText", @@ -9128,7 +9139,8 @@ "Type": "NodeHeading", "HeadingLevel": 3, "Properties": { - "id": "20210106154319-jeh8w1g" + "id": "20210106154319-jeh8w1g", + "updated": "20240517003643" }, "Children": [ { @@ -9686,26 +9698,26 @@ ] }, { - "ID": "20230316182941-apzs7yu", + "ID": "20240516223918-rxmwozs", "Type": "NodeHeading", "HeadingLevel": 2, "Properties": { - "id": "20230316182941-apzs7yu", - "updated": "20230316182941" + "id": "20240516223918-rxmwozs", + "updated": "20240517003643" }, "Children": [ { "Type": "NodeText", - "Data": "PDF" + "Data": "Search" } ] }, { - "ID": "20230316182941-b79os2p", + "ID": "20240516230446-a5mg1lv", "Type": "NodeParagraph", "Properties": { - "id": "20230316182941-b79os2p", - "updated": "20230316182941" + "id": "20240516230446-a5mg1lv", + "updated": "20240516231005" }, "Children": [ { @@ -9719,21 +9731,21 @@ }, { "Type": "NodeText", - "Data": "​: When using keyboard shortcuts, the focus should be on the PDF. Otherwise, please click on the PDF." + "Data": "​: To use shortcuts on the search interface." } ] }, { - "ID": "20230316182941-du649ki", + "ID": "20240516223938-9b2zxpl", "Type": "NodeTable", "TableAligns": [ 0, 0 ], "Properties": { - "colgroup": "min-width: 60px;|min-width: 60px;", - "id": "20230316182941-du649ki", - "updated": "20230424101729" + "colgroup": "|", + "id": "20240516223938-9b2zxpl", + "updated": "20240517003643" }, "Children": [ { @@ -9750,7 +9762,7 @@ "Children": [ { "Type": "NodeText", - "Data": "Name" + "Data": "名称" } ] }, @@ -9760,7 +9772,7 @@ "Children": [ { "Type": "NodeText", - "Data": "Shortcuts" + "Data": "快捷键" } ] } @@ -9778,11 +9790,7 @@ "Children": [ { "Type": "NodeText", - "Data": "Rectangle bounding box annotation" - }, - { - "Type": "NodeBr", - "Data": "br" + "Data": "to navigate" } ] }, @@ -9797,7 +9805,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+D" + "TextMarkTextContent": "↑" }, { "Type": "NodeText", @@ -9806,42 +9814,16 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘D" + "TextMarkTextContent": "↓" }, { "Type": "NodeText", - "Data": "​" - } - ] - } - ] - }, - { - "Type": "NodeTableRow", - "Data": "tr", - "Children": [ - { - "Type": "NodeTableCell", - "Data": "td", - "Children": [ - { - "Type": "NodeText", - "Data": "Rectangle annotation" - } - ] - }, - { - "Type": "NodeTableCell", - "Data": "td", - "Children": [ - { - "Type": "NodeText", - "Data": "​" + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+D" + "TextMarkTextContent": "PageUp" }, { "Type": "NodeText", @@ -9850,7 +9832,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥D" + "TextMarkTextContent": "PageDown" }, { "Type": "NodeText", @@ -9870,7 +9852,7 @@ "Children": [ { "Type": "NodeText", - "Data": "Select annotation" + "Data": "New" } ] }, @@ -9885,20 +9867,20 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "0" + "TextMarkTextContent": "Ctrl+N" }, { "Type": "NodeText", - "Data": "​ Last used color / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "1-7" + "TextMarkTextContent": "⌘N" }, { "Type": "NodeText", - "Data": "​ Corresponding color" + "Data": "​" } ] } @@ -9914,7 +9896,7 @@ "Children": [ { "Type": "NodeText", - "Data": "Search" + "Data": "to open / Show in Folder" } ] }, @@ -9929,7 +9911,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+F" + "TextMarkTextContent": "Enter" }, { "Type": "NodeText", @@ -9938,7 +9920,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘F" + "TextMarkTextContent": "Double Click" }, { "Type": "NodeText", @@ -9958,7 +9940,7 @@ "Children": [ { "Type": "NodeText", - "Data": "Search next" + "Data": "to switch to the next hit" } ] }, @@ -9973,16 +9955,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+G" - }, - { - "Type": "NodeText", - "Data": "​ / " - }, - { - "Type": "NodeTextMark", - "TextMarkType": "kbd", - "TextMarkTextContent": "⌘G" + "TextMarkTextContent": "Click" }, { "Type": "NodeText", @@ -10002,7 +9975,7 @@ "Children": [ { "Type": "NodeText", - "Data": "Zoom in" + "Data": "to open to the right" } ] }, @@ -10017,7 +9990,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+=" + "TextMarkTextContent": "Alt+." }, { "Type": "NodeText", @@ -10026,7 +9999,25 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘=" + "TextMarkTextContent": "Alt+Click" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌥." + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌥Click" }, { "Type": "NodeText", @@ -10046,7 +10037,7 @@ "Children": [ { "Type": "NodeText", - "Data": "Zoom out" + "Data": "to dismiss" } ] }, @@ -10061,16 +10052,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+-" - }, - { - "Type": "NodeText", - "Data": "​ / " - }, - { - "Type": "NodeTextMark", - "TextMarkType": "kbd", - "TextMarkTextContent": "⌘-" + "TextMarkTextContent": "Esc" }, { "Type": "NodeText", @@ -10079,9 +10061,406 @@ ] } ] - }, - { - "Type": "NodeTableRow", + } + ] + }, + { + "ID": "20230316182941-apzs7yu", + "Type": "NodeHeading", + "HeadingLevel": 2, + "Properties": { + "id": "20230316182941-apzs7yu", + "updated": "20240517003310" + }, + "Children": [ + { + "Type": "NodeText", + "Data": "PDF" + } + ] + }, + { + "ID": "20230316182941-b79os2p", + "Type": "NodeParagraph", + "Properties": { + "id": "20230316182941-b79os2p", + "updated": "20230316182941" + }, + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "tag", + "TextMarkTextContent": "Note" + }, + { + "Type": "NodeText", + "Data": "​: When using keyboard shortcuts, the focus should be on the PDF. Otherwise, please click on the PDF." + } + ] + }, + { + "ID": "20230316182941-du649ki", + "Type": "NodeTable", + "TableAligns": [ + 0, + 0 + ], + "Properties": { + "colgroup": "min-width: 60px;|min-width: 60px;", + "id": "20230316182941-du649ki", + "updated": "20230424101729" + }, + "Children": [ + { + "Type": "NodeTableHead", + "Data": "thead", + "Children": [ + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "th", + "Children": [ + { + "Type": "NodeText", + "Data": "Name" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "th", + "Children": [ + { + "Type": "NodeText", + "Data": "Shortcuts" + } + ] + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "Rectangle bounding box annotation" + }, + { + "Type": "NodeBr", + "Data": "br" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "Ctrl+D" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌘D" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "Rectangle annotation" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "Alt+D" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌥D" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "Select annotation" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "0" + }, + { + "Type": "NodeText", + "Data": "​ Last used color / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "1-7" + }, + { + "Type": "NodeText", + "Data": "​ Corresponding color" + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "Search" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "Ctrl+F" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌘F" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "Search next" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "Ctrl+G" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌘G" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "Zoom in" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "Ctrl+=" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌘=" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "Zoom out" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "Ctrl+-" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌘-" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + }, + { + "Type": "NodeTableRow", "Data": "tr", "Children": [ { @@ -10588,7 +10967,7 @@ "HeadingLevel": 2, "Properties": { "id": "20220619002116-wyh4u48", - "updated": "20220902200430" + "updated": "20240517003310" }, "Children": [ { @@ -10603,7 +10982,7 @@ "HeadingLevel": 3, "Properties": { "id": "20210528103541-wdfi8b5", - "updated": "20210528103541" + "updated": "20240517003310" }, "Children": [ { @@ -10622,7 +11001,7 @@ "Properties": { "colgroup": "|", "id": "20210601185420-1s8e9uy", - "updated": "20230503141906" + "updated": "20240517003310" }, "Children": [ { @@ -10901,7 +11280,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌃+Drag" + "TextMarkTextContent": "⌃Drag" }, { "Type": "NodeText", @@ -10945,7 +11324,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥+Drag" + "TextMarkTextContent": "⌥Drag" }, { "Type": "NodeText", @@ -10989,7 +11368,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧+Drag" + "TextMarkTextContent": "⇧Drag" }, { "Type": "NodeText", @@ -11007,7 +11386,7 @@ "HeadingLevel": 3, "Properties": { "id": "20221105230824-p1mp4c2", - "updated": "20221105230831" + "updated": "20240517003145" }, "Children": [ { @@ -11443,7 +11822,7 @@ "HeadingLevel": 3, "Properties": { "id": "20220619002135-m4wlkny", - "updated": "20220619002813" + "updated": "20240517003145" }, "Children": [ { @@ -11463,7 +11842,7 @@ "Properties": { "colgroup": "||", "id": "20220619002135-vggu3cg", - "updated": "20230517155934" + "updated": "20240517002451" }, "Children": [ { @@ -11726,6 +12105,15 @@ "TextMarkType": "kbd", "TextMarkTextContent": "Shift+Hover" }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⇧Hover" + }, { "Type": "NodeText", "Data": "​" @@ -11752,7 +12140,7 @@ "HeadingLevel": 3, "Properties": { "id": "20220619002135-5dfw1yo", - "updated": "20221107215002" + "updated": "20240517003145" }, "Children": [ { @@ -12074,7 +12462,7 @@ "HeadingLevel": 3, "Properties": { "id": "20221107214951-fa1pwoe", - "updated": "20221107214956" + "updated": "20240517003145" }, "Children": [ { @@ -12271,7 +12659,7 @@ "HeadingLevel": 3, "Properties": { "id": "20220619002135-jcgvcfv", - "updated": "20220619003107" + "updated": "20240517003145" }, "Children": [ { @@ -12444,7 +12832,7 @@ "HeadingLevel": 3, "Properties": { "id": "20220619002135-bsqxfmk", - "updated": "20220619003051" + "updated": "20240517003145" }, "Children": [ { @@ -12653,7 +13041,7 @@ "HeadingLevel": 3, "Properties": { "id": "20220901210414-3o89bcr", - "updated": "20220902200523" + "updated": "20240517003145" }, "Children": [ { @@ -12672,7 +13060,7 @@ "Properties": { "colgroup": "|", "id": "20220901210414-pbddniq", - "updated": "20220902200537" + "updated": "20240517003145" }, "Children": [ { @@ -12725,10 +13113,18 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "Drag" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -12752,10 +13148,27 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "Drag+Alt" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌥Drag" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -12779,10 +13192,27 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "Drag+Shift" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⇧Drag" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -12796,7 +13226,7 @@ "HeadingLevel": 3, "Properties": { "id": "20220902200437-58why4v", - "updated": "20220902201039" + "updated": "20240517002700" }, "Children": [ { @@ -12815,7 +13245,7 @@ "Properties": { "colgroup": "|", "id": "20220902200448-06bh19l", - "updated": "20220902200720" + "updated": "20240517002700" }, "Children": [ { @@ -12868,6 +13298,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -12875,12 +13309,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌘C" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -12908,10 +13346,18 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "Drag" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -12939,10 +13385,27 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Drag+Alt" + "TextMarkTextContent": "Drag+Alt " + }, + { + "Type": "NodeText", + "Data": "​/ " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌥Drag" + }, + { + "Type": "NodeText", + "Data": "​" }, { "Type": "NodeBr", diff --git a/app/guide/20210808180117-czj9bvb/20200812220555-lj3enxa/20210808180321-hbvl5c2/20200813004551-gm0pbn1.sy b/app/guide/20210808180117-czj9bvb/20200812220555-lj3enxa/20210808180321-hbvl5c2/20200813004551-gm0pbn1.sy index 85b23d5b5a0..e2e9b7a680a 100644 --- a/app/guide/20210808180117-czj9bvb/20200812220555-lj3enxa/20210808180321-hbvl5c2/20200813004551-gm0pbn1.sy +++ b/app/guide/20210808180117-czj9bvb/20200812220555-lj3enxa/20210808180321-hbvl5c2/20200813004551-gm0pbn1.sy @@ -7,7 +7,7 @@ "id": "20200813004551-gm0pbn1", "title": "快捷键", "type": "doc", - "updated": "20240430215420" + "updated": "20240517004202" }, "Children": [ { @@ -16,7 +16,7 @@ "HeadingLevel": 2, "Properties": { "id": "20240112150737-e41yt1y", - "updated": "20240112150737" + "updated": "20240517004202" }, "Children": [ { @@ -36,7 +36,7 @@ "Properties": { "colgroup": "||", "id": "20201227133317-ovwnk1y", - "updated": "20240426100731" + "updated": "20240517004202" }, "Children": [ { @@ -63,7 +63,7 @@ "Children": [ { "Type": "NodeText", - "Data": "快捷键" + "Data": "操作" } ] }, @@ -1149,7 +1149,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "设置- 快捷键" + "TextMarkTextContent": "设置 - 快捷键" }, { "Type": "NodeText", @@ -1194,7 +1194,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "设置- 快捷键" + "TextMarkTextContent": "设置 - 快捷键" }, { "Type": "NodeText", @@ -1239,7 +1239,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "设置- 快捷键" + "TextMarkTextContent": "设置 - 快捷键" }, { "Type": "NodeText", @@ -1284,7 +1284,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "设置- 快捷键" + "TextMarkTextContent": "设置 - 快捷键" }, { "Type": "NodeText", @@ -2141,7 +2141,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Enter" + "TextMarkTextContent": "回车" }, { "Type": "NodeText", @@ -2196,7 +2196,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "设置- 快捷键" + "TextMarkTextContent": "设置 - 快捷键" }, { "Type": "NodeText", @@ -2241,7 +2241,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "设置- 快捷键" + "TextMarkTextContent": "设置 - 快捷键" }, { "Type": "NodeText", @@ -2286,7 +2286,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "设置- 快捷键" + "TextMarkTextContent": "设置 - 快捷键" }, { "Type": "NodeText", @@ -2304,7 +2304,7 @@ "HeadingLevel": 2, "Properties": { "id": "20210826183308-g4ck02v", - "updated": "20210826181714" + "updated": "20240517002048" }, "Children": [ { @@ -2324,7 +2324,7 @@ "Properties": { "colgroup": "||", "id": "20210826183308-gok25ug", - "updated": "20240426101023" + "updated": "20240516225350" }, "Children": [ { @@ -2351,7 +2351,7 @@ "Children": [ { "Type": "NodeText", - "Data": "快捷键" + "Data": "操作" } ] }, @@ -2536,7 +2536,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Click" + "TextMarkTextContent": "Ctrl+点击" }, { "Type": "NodeText", @@ -2545,7 +2545,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Click" + "TextMarkTextContent": "⌘点击" }, { "Type": "NodeText", @@ -2608,7 +2608,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Click" + "TextMarkTextContent": "Ctrl+点击" }, { "Type": "NodeText", @@ -2617,7 +2617,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Click" + "TextMarkTextContent": "⌘点击" }, { "Type": "NodeText", @@ -2652,7 +2652,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Enter" + "TextMarkTextContent": "回车" }, { "Type": "NodeText", @@ -3037,7 +3037,8 @@ "Type": "NodeHeading", "HeadingLevel": 2, "Properties": { - "id": "20201227133317-rkh4bji" + "id": "20201227133317-rkh4bji", + "updated": "20240517002048" }, "Children": [ { @@ -3051,7 +3052,8 @@ "Type": "NodeHeading", "HeadingLevel": 3, "Properties": { - "id": "20201227133317-kazyttz" + "id": "20201227133317-kazyttz", + "updated": "20240517002048" }, "Children": [ { @@ -3075,7 +3077,7 @@ "Properties": { "colgroup": "||", "id": "20201227133317-vopotjc", - "updated": "20240430215420" + "updated": "20240516234645" }, "Children": [ { @@ -3102,7 +3104,7 @@ "Children": [ { "Type": "NodeText", - "Data": "快捷键" + "Data": "操作" } ] }, @@ -3212,16 +3214,7 @@ }, { "Type": "NodeText", - "Data": "​ / " - }, - { - "Type": "NodeTextMark", - "TextMarkType": "kbd", - "TextMarkTextContent": "Click+Tag" - }, - { - "Type": "NodeText", - "Data": "​" + "Data": "​ / 点击标签" } ] }, @@ -6134,7 +6127,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Shift+Click" + "TextMarkTextContent": "Shift+点击" }, { "Type": "NodeText", @@ -6143,7 +6136,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧Click" + "TextMarkTextContent": "⇧点击" }, { "Type": "NodeText", @@ -7270,7 +7263,8 @@ "Type": "NodeHeading", "HeadingLevel": 3, "Properties": { - "id": "20210102174148-tq925jm" + "id": "20210102174148-tq925jm", + "updated": "20240517002048" }, "Children": [ { @@ -7290,7 +7284,7 @@ "Properties": { "colgroup": "||", "id": "20210102174148-snb76bj", - "updated": "20221210173641" + "updated": "20240517002048" }, "Children": [ { @@ -7317,7 +7311,7 @@ "Children": [ { "Type": "NodeText", - "Data": "快捷键" + "Data": "操作" } ] }, @@ -7370,7 +7364,22 @@ }, { "Type": "NodeTableCell", - "Data": "td" + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "需在 " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": ":" + }, + { + "Type": "NodeText", + "Data": "​ 后输入文本" + } + ] } ] }, @@ -8213,7 +8222,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "```Enter" + "TextMarkTextContent": "```回车" }, { "Type": "NodeText", @@ -8386,6 +8395,15 @@ "TextMarkType": "kbd", "TextMarkTextContent": "[]" }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "【】" + }, { "Type": "NodeText", "Data": "​" @@ -8465,7 +8483,8 @@ "Type": "NodeHeading", "HeadingLevel": 3, "Properties": { - "id": "20201227133317-n64nfza" + "id": "20201227133317-n64nfza", + "updated": "20240517003731" }, "Children": [ { @@ -8484,7 +8503,7 @@ "Properties": { "colgroup": "|", "id": "20201227133317-fikse1i", - "updated": "20220829212410" + "updated": "20240516225340" }, "Children": [ { @@ -8511,7 +8530,7 @@ "Children": [ { "Type": "NodeText", - "Data": "快捷键" + "Data": "操作" } ] } @@ -8530,16 +8549,16 @@ "colspan": "1" }, "Children": [ + { + "Type": "NodeKramdownSpanIAL", + "Data": "{: colspan=\"1\"}" + }, { "Type": "NodeText", "Data": "转换为段落" } ] }, - { - "Type": "NodeKramdownSpanIAL", - "Data": "{: colspan=\"1\"}" - }, { "Type": "NodeTableCell", "Data": "td", @@ -8547,6 +8566,10 @@ "colspan": "1" }, "Children": [ + { + "Type": "NodeKramdownSpanIAL", + "Data": "{: colspan=\"1\"}" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -8554,18 +8577,18 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘0" + }, + { + "Type": "NodeText", + "Data": "​" } ] - }, - { - "Type": "NodeKramdownSpanIAL", - "Data": "{: colspan=\"1\"}" } ] }, @@ -8587,6 +8610,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -8594,12 +8621,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘1" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -8623,6 +8654,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -8630,12 +8665,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘2" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -8659,6 +8698,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -8666,12 +8709,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘3" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -8695,6 +8742,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -8702,12 +8753,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘4" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -8731,6 +8786,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -8738,12 +8797,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘5" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -8767,6 +8830,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -8774,12 +8841,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘6" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -8792,7 +8863,8 @@ "Type": "NodeHeading", "HeadingLevel": 3, "Properties": { - "id": "20201227133317-x02vhoh" + "id": "20201227133317-x02vhoh", + "updated": "20240517003731" }, "Children": [ { @@ -8812,7 +8884,7 @@ "Properties": { "colgroup": "||", "id": "20201227133317-yv5msrs", - "updated": "20240428230716" + "updated": "20240517003731" }, "Children": [ { @@ -8839,7 +8911,7 @@ "Children": [ { "Type": "NodeText", - "Data": "快捷键" + "Data": "操作" } ] }, @@ -9014,7 +9086,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Enter" + "TextMarkTextContent": "Ctrl+回车" }, { "Type": "NodeText", @@ -9023,7 +9095,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Enter" + "TextMarkTextContent": "⌘回车" }, { "Type": "NodeText", @@ -9032,7 +9104,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "click" + "TextMarkTextContent": "点击" }, { "Type": "NodeText", @@ -9077,7 +9149,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+Enter" + "TextMarkTextContent": "Alt+回车" }, { "Type": "NodeText", @@ -9086,7 +9158,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥Enter" + "TextMarkTextContent": "⌥回车" }, { "Type": "NodeText", @@ -9113,7 +9185,8 @@ "Type": "NodeHeading", "HeadingLevel": 3, "Properties": { - "id": "20201227133317-xpgtzbg" + "id": "20201227133317-xpgtzbg", + "updated": "20240517003636" }, "Children": [ { @@ -9146,7 +9219,7 @@ "Properties": { "colgroup": "|", "id": "20201227133317-v7clw0j", - "updated": "20220902200852" + "updated": "20240516225336" }, "Children": [ { @@ -9173,7 +9246,7 @@ "Children": [ { "Type": "NodeText", - "Data": "快捷键" + "Data": "操作" } ] } @@ -9199,6 +9272,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9206,12 +9283,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⇧⌘T" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9235,6 +9316,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9242,12 +9327,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⇧⌘D" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9271,6 +9360,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9278,12 +9371,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⇧⌘L" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9307,6 +9404,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9314,12 +9415,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⇧⌘R" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9343,6 +9448,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9350,12 +9459,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘T" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9379,6 +9492,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9386,12 +9503,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘B" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9415,6 +9536,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9422,12 +9547,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘L" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9451,6 +9580,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9458,12 +9591,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘R" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9487,6 +9624,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9494,12 +9635,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌘-" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9523,6 +9668,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9530,12 +9679,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⇧⌘-" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9559,6 +9712,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9566,12 +9723,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⇧⇥" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9595,6 +9756,10 @@ "Type": "NodeTableCell", "Data": "td", "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9602,12 +9767,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⇥" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9616,26 +9785,26 @@ ] }, { - "ID": "20230316151845-nszzteq", + "ID": "20240516222136-248xd1v", "Type": "NodeHeading", "HeadingLevel": 2, "Properties": { - "id": "20230316151845-nszzteq", - "updated": "20230316151848" + "id": "20240516222136-248xd1v", + "updated": "20240517003636" }, "Children": [ { "Type": "NodeText", - "Data": "PDF" + "Data": "搜索" } ] }, { - "ID": "20230316152222-sg0okt1", + "ID": "20240516225543-orxpo61", "Type": "NodeParagraph", "Properties": { - "id": "20230316152222-sg0okt1", - "updated": "20230316182608" + "id": "20240516225543-orxpo61", + "updated": "20240516230945" }, "Children": [ { @@ -9649,21 +9818,388 @@ }, { "Type": "NodeText", - "Data": "​:使用快捷键时,焦点需在 PDF 上,否则请点击 PDF。" + "Data": "​:在搜索界面使用快捷键。" } ] }, { - "ID": "20230316151850-da0uf4c", + "ID": "20240516222214-zvxggw3", "Type": "NodeTable", "TableAligns": [ 0, 0 ], "Properties": { - "colgroup": "min-width: 60px;|min-width: 60px;", - "id": "20230316151850-da0uf4c", - "updated": "20230424101412" + "colgroup": "|", + "id": "20240516222214-zvxggw3", + "updated": "20240517003636" + }, + "Children": [ + { + "Type": "NodeTableHead", + "Data": "thead", + "Children": [ + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "th", + "Children": [ + { + "Type": "NodeText", + "Data": "名称" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "th", + "Children": [ + { + "Type": "NodeText", + "Data": "操作" + } + ] + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "导航" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "↑" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "↓" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "PageUp" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "PageDown" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "新建" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "Ctrl+N" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌘N" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "打开 / 打开文件位置" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "回车" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "双击" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "切换到下一个命中" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "点击" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "右侧分屏打开" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "Alt+." + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "Alt+点击" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌥." + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌥点击" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "退出搜素" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "Esc" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + } + ] + }, + { + "ID": "20230316151845-nszzteq", + "Type": "NodeHeading", + "HeadingLevel": 2, + "Properties": { + "id": "20230316151845-nszzteq", + "updated": "20240517003111" + }, + "Children": [ + { + "Type": "NodeText", + "Data": "PDF" + } + ] + }, + { + "ID": "20230316152222-sg0okt1", + "Type": "NodeParagraph", + "Properties": { + "id": "20230316152222-sg0okt1", + "updated": "20230316182608" + }, + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "tag", + "TextMarkTextContent": "注意" + }, + { + "Type": "NodeText", + "Data": "​:使用快捷键时,焦点需在 PDF 上,否则请点击 PDF。" + } + ] + }, + { + "ID": "20230316151850-da0uf4c", + "Type": "NodeTable", + "TableAligns": [ + 0, + 0 + ], + "Properties": { + "colgroup": "min-width: 60px;|min-width: 60px;", + "id": "20230316151850-da0uf4c", + "updated": "20230424101412" }, "Children": [ { @@ -10514,7 +11050,7 @@ "HeadingLevel": 2, "Properties": { "id": "20220618235609-cuv0am5", - "updated": "20220902200924" + "updated": "20240517003111" }, "Children": [ { @@ -10529,7 +11065,7 @@ "HeadingLevel": 3, "Properties": { "id": "20210708000243-4s325nw", - "updated": "20230503141631" + "updated": "20240517003111" }, "Children": [ { @@ -10608,7 +11144,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Click" + "TextMarkTextContent": "点击" }, { "Type": "NodeText", @@ -10643,7 +11179,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Click" + "TextMarkTextContent": "Ctrl+点击" }, { "Type": "NodeText", @@ -10652,7 +11188,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Click" + "TextMarkTextContent": "⌘点击" }, { "Type": "NodeText", @@ -10687,7 +11223,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+Click" + "TextMarkTextContent": "Alt+点击" }, { "Type": "NodeText", @@ -10696,7 +11232,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥Click" + "TextMarkTextContent": "⌥点击" }, { "Type": "NodeText", @@ -10731,7 +11267,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Shift+Click" + "TextMarkTextContent": "Shift+点击" }, { "Type": "NodeText", @@ -10740,7 +11276,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧Click" + "TextMarkTextContent": "⇧点击" }, { "Type": "NodeText", @@ -10925,7 +11461,7 @@ "HeadingLevel": 3, "Properties": { "id": "20221105225606-ei8q9u9", - "updated": "20221105225609" + "updated": "20240517003111" }, "Children": [ { @@ -11064,7 +11600,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Click" + "TextMarkTextContent": "点击" }, { "Type": "NodeText", @@ -11109,7 +11645,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Click" + "TextMarkTextContent": "Ctrl+点击" }, { "Type": "NodeText", @@ -11118,7 +11654,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Click" + "TextMarkTextContent": "⌘点击" }, { "Type": "NodeText", @@ -11163,7 +11699,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+Click" + "TextMarkTextContent": "Alt+点击" }, { "Type": "NodeText", @@ -11172,7 +11708,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥Click" + "TextMarkTextContent": "⌥点击" }, { "Type": "NodeText", @@ -11217,7 +11753,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Shift+Click" + "TextMarkTextContent": "Shift+点击" }, { "Type": "NodeText", @@ -11226,7 +11762,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧Click" + "TextMarkTextContent": "⇧点击" }, { "Type": "NodeText", @@ -11271,7 +11807,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Click" + "TextMarkTextContent": "点击" }, { "Type": "NodeText", @@ -11316,7 +11852,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+Click" + "TextMarkTextContent": "Alt+点击" }, { "Type": "NodeText", @@ -11325,7 +11861,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥Click" + "TextMarkTextContent": "⌥点击" }, { "Type": "NodeText", @@ -11353,7 +11889,7 @@ "HeadingLevel": 3, "Properties": { "id": "20220619000226-0pq4qe4", - "updated": "20220619000922" + "updated": "20240517003111" }, "Children": [ { @@ -11443,7 +11979,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Click" + "TextMarkTextContent": "点击" }, { "Type": "NodeText", @@ -11482,7 +12018,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Click" + "TextMarkTextContent": "Ctrl+点击" }, { "Type": "NodeText", @@ -11491,7 +12027,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Click" + "TextMarkTextContent": "⌘点击" }, { "Type": "NodeText", @@ -11530,7 +12066,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+Click" + "TextMarkTextContent": "Alt+点击" }, { "Type": "NodeText", @@ -11539,7 +12075,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥Click" + "TextMarkTextContent": "⌥点击" }, { "Type": "NodeText", @@ -11578,7 +12114,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Shift+Click" + "TextMarkTextContent": "Shift+点击" }, { "Type": "NodeText", @@ -11587,7 +12123,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧Click" + "TextMarkTextContent": "⇧点击" }, { "Type": "NodeText", @@ -11663,7 +12199,7 @@ "HeadingLevel": 3, "Properties": { "id": "20220619001156-26volkp", - "updated": "20221107214453" + "updated": "20240517003111" }, "Children": [ { @@ -11753,7 +12289,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Click" + "TextMarkTextContent": "点击" }, { "Type": "NodeText", @@ -11792,7 +12328,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Click" + "TextMarkTextContent": "Ctrl+点击" }, { "Type": "NodeText", @@ -11801,7 +12337,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Click" + "TextMarkTextContent": "⌘点击" }, { "Type": "NodeText", @@ -11840,7 +12376,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+Click" + "TextMarkTextContent": "Alt+点击" }, { "Type": "NodeText", @@ -11849,7 +12385,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥Click" + "TextMarkTextContent": "⌥点击" }, { "Type": "NodeText", @@ -11892,7 +12428,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Shift+Click" + "TextMarkTextContent": "Shift+点击" }, { "Type": "NodeText", @@ -11901,7 +12437,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧Click" + "TextMarkTextContent": "⇧点击" }, { "Type": "NodeText", @@ -11940,7 +12476,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Alt+Click" + "TextMarkTextContent": "Ctrl+Alt+点击" }, { "Type": "NodeText", @@ -11949,7 +12485,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥⌘Click" + "TextMarkTextContent": "⌥⌘点击" }, { "Type": "NodeText", @@ -11977,7 +12513,7 @@ "HeadingLevel": 3, "Properties": { "id": "20221107214439-v40c6qz", - "updated": "20221107220850" + "updated": "20240517003111" }, "Children": [ { @@ -12056,7 +12592,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Click" + "TextMarkTextContent": "点击" }, { "Type": "NodeText", @@ -12091,7 +12627,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+Click" + "TextMarkTextContent": "Alt+点击" }, { "Type": "NodeText", @@ -12100,7 +12636,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥Click" + "TextMarkTextContent": "⌥点击" }, { "Type": "NodeText", @@ -12166,7 +12702,7 @@ "HeadingLevel": 3, "Properties": { "id": "20220619000529-ns8rmiz", - "updated": "20220619000924" + "updated": "20240517003111" }, "Children": [ { @@ -12241,7 +12777,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Click" + "TextMarkTextContent": "点击" } ] } @@ -12268,7 +12804,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Click" + "TextMarkTextContent": "Ctrl+点击" }, { "Type": "NodeText", @@ -12277,7 +12813,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Click" + "TextMarkTextContent": "⌘点击" } ] } @@ -12304,7 +12840,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Shift+Click" + "TextMarkTextContent": "Shift+点击" }, { "Type": "NodeText", @@ -12313,7 +12849,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧Click" + "TextMarkTextContent": "⇧点击" } ] } @@ -12327,7 +12863,7 @@ "HeadingLevel": 3, "Properties": { "id": "20220619000241-hjxmjgy", - "updated": "20220619001117" + "updated": "20240517003111" }, "Children": [ { @@ -12402,7 +12938,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Click" + "TextMarkTextContent": "点击" } ] } @@ -12429,7 +12965,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Click" + "TextMarkTextContent": "Ctrl+点击" }, { "Type": "NodeText", @@ -12438,7 +12974,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Click" + "TextMarkTextContent": "⌘点击" } ] } @@ -12465,7 +13001,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+Click" + "TextMarkTextContent": "Alt+点击" }, { "Type": "NodeText", @@ -12474,7 +13010,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥Click" + "TextMarkTextContent": "⌥点击" } ] } @@ -12501,7 +13037,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Shift+Click" + "TextMarkTextContent": "Shift+点击" }, { "Type": "NodeText", @@ -12510,7 +13046,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧Click" + "TextMarkTextContent": "⇧点击" } ] } @@ -12524,7 +13060,7 @@ "HeadingLevel": 3, "Properties": { "id": "20220619001133-tyykggw", - "updated": "20220902200931" + "updated": "20240517003111" }, "Children": [ { @@ -12543,7 +13079,7 @@ "Properties": { "colgroup": "|", "id": "20220901205905-c1okxuw", - "updated": "20231107182102" + "updated": "20240517003111" }, "Children": [ { @@ -12682,7 +13218,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Shift+图标拖拽" + "TextMarkTextContent": "Shift+拖拽" }, { "Type": "NodeText", @@ -12691,7 +13227,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧图标拖拽" + "TextMarkTextContent": "⇧拖拽" }, { "Type": "NodeText", diff --git a/app/guide/20211226090932-5lcq56f/20211226115423-d5z1joq/20211226121203-rjjngpz/20211226122549-jktxego.sy b/app/guide/20211226090932-5lcq56f/20211226115423-d5z1joq/20211226121203-rjjngpz/20211226122549-jktxego.sy index edf503e5c0f..07864bcbb1a 100644 --- a/app/guide/20211226090932-5lcq56f/20211226115423-d5z1joq/20211226121203-rjjngpz/20211226122549-jktxego.sy +++ b/app/guide/20211226090932-5lcq56f/20211226115423-d5z1joq/20211226121203-rjjngpz/20211226122549-jktxego.sy @@ -7,7 +7,7 @@ "id": "20211226122549-jktxego", "title": "快捷鍵", "type": "doc", - "updated": "20240430215519" + "updated": "20240517004210" }, "Children": [ { @@ -16,7 +16,7 @@ "HeadingLevel": 2, "Properties": { "id": "20211226122652-0t4c1qf", - "updated": "20231030110253" + "updated": "20240517004210" }, "Children": [ { @@ -36,7 +36,7 @@ "Properties": { "colgroup": "||", "id": "20211226122652-4e9hm9i", - "updated": "20240426100801" + "updated": "20240517004210" }, "Children": [ { @@ -63,7 +63,7 @@ "Children": [ { "Type": "NodeText", - "Data": "快捷鍵" + "Data": "操作" } ] }, @@ -1143,7 +1143,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "設置-\u0026gt;快捷鍵" + "TextMarkTextContent": "設置 - 快捷鍵" }, { "Type": "NodeText", @@ -1188,7 +1188,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "設置-\u0026gt;快捷鍵" + "TextMarkTextContent": "設置 - 快捷鍵" }, { "Type": "NodeText", @@ -1233,7 +1233,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "設置-\u0026gt;快捷鍵" + "TextMarkTextContent": "設置 - 快捷鍵" }, { "Type": "NodeText", @@ -1278,7 +1278,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "設置-\u0026gt;快捷鍵" + "TextMarkTextContent": "設置 - 快捷鍵" }, { "Type": "NodeText", @@ -2135,7 +2135,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Enter" + "TextMarkTextContent": "回車" }, { "Type": "NodeText", @@ -2190,7 +2190,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "設置-\u0026gt;快捷鍵" + "TextMarkTextContent": "設置 - 快捷鍵" }, { "Type": "NodeText", @@ -2235,7 +2235,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "設置-\u0026gt;快捷鍵" + "TextMarkTextContent": "設置 - 快捷鍵" }, { "Type": "NodeText", @@ -2280,7 +2280,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "設置-\u0026gt;快捷鍵" + "TextMarkTextContent": "設置 - 快捷鍵" }, { "Type": "NodeText", @@ -2298,7 +2298,7 @@ "HeadingLevel": 2, "Properties": { "id": "20211226122652-3q2xsbj", - "updated": "20231030110253" + "updated": "20240517002058" }, "Children": [ { @@ -2318,7 +2318,7 @@ "Properties": { "colgroup": "||", "id": "20211226122652-eu9085n", - "updated": "20240426101104" + "updated": "20240516225433" }, "Children": [ { @@ -2345,7 +2345,7 @@ "Children": [ { "Type": "NodeText", - "Data": "快捷鍵" + "Data": "操作" } ] }, @@ -2530,7 +2530,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Click" + "TextMarkTextContent": "Ctrl+點擊" }, { "Type": "NodeText", @@ -2539,7 +2539,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Click" + "TextMarkTextContent": "⌘點擊" }, { "Type": "NodeText", @@ -2602,7 +2602,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Click" + "TextMarkTextContent": "Ctrl+點擊" }, { "Type": "NodeText", @@ -2611,7 +2611,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Click" + "TextMarkTextContent": "⌘點擊" }, { "Type": "NodeText", @@ -2646,7 +2646,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Enter" + "TextMarkTextContent": "回車" }, { "Type": "NodeText", @@ -3032,7 +3032,7 @@ "HeadingLevel": 2, "Properties": { "id": "20211226122652-htptsmh", - "updated": "20231030110251" + "updated": "20240517002058" }, "Children": [ { @@ -3047,7 +3047,7 @@ "HeadingLevel": 3, "Properties": { "id": "20211226122652-xp1hi60", - "updated": "20231030110250" + "updated": "20240517002058" }, "Children": [ { @@ -3067,7 +3067,7 @@ "Properties": { "colgroup": "||", "id": "20240112151141-ggglv0f", - "updated": "20240430215519" + "updated": "20240516235214" }, "Children": [ { @@ -3094,7 +3094,7 @@ "Children": [ { "Type": "NodeText", - "Data": "快捷鍵" + "Data": "操作" } ] }, @@ -3208,16 +3208,7 @@ }, { "Type": "NodeText", - "Data": "​ / " - }, - { - "Type": "NodeTextMark", - "TextMarkType": "kbd", - "TextMarkTextContent": "Click+Tag" - }, - { - "Type": "NodeText", - "Data": "​" + "Data": "​ / 點擊標籤" } ] }, @@ -6153,7 +6144,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Shift+Click" + "TextMarkTextContent": "Shift+點擊" }, { "Type": "NodeText", @@ -6162,7 +6153,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧Click" + "TextMarkTextContent": "⇧點擊" }, { "Type": "NodeText", @@ -7316,7 +7307,7 @@ "HeadingLevel": 3, "Properties": { "id": "20211226122652-8191vgw", - "updated": "20211226011912" + "updated": "20240517002058" }, "Children": [ { @@ -7336,7 +7327,7 @@ "Properties": { "colgroup": "||", "id": "20211226122652-v6as45b", - "updated": "20221210173825" + "updated": "20240517002058" }, "Children": [ { @@ -7350,8 +7341,6 @@ { "Type": "NodeTableCell", "Data": "th", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -7362,20 +7351,16 @@ { "Type": "NodeTableCell", "Data": "th", - "TableCellContentWidth": 8, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", - "Data": "快捷鍵" + "Data": "操作" } ] }, { "Type": "NodeTableCell", "Data": "th", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -7394,8 +7379,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -7406,8 +7389,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -7427,8 +7408,21 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Children": [ + { + "Type": "NodeText", + "Data": "需在 " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": ":" + }, + { + "Type": "NodeText", + "Data": "​ 後輸入文字" + } + ] } ] }, @@ -7439,8 +7433,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 8, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -7451,8 +7443,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -7481,8 +7471,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 12, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -7499,8 +7487,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -7511,8 +7497,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -7540,9 +7524,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -7553,8 +7535,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -7565,8 +7545,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -7594,9 +7572,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -7607,8 +7583,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -7619,8 +7593,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -7648,9 +7620,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -7661,8 +7631,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -7673,8 +7641,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -7702,9 +7668,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -7715,8 +7679,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 8, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -7727,8 +7689,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -7756,9 +7716,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -7769,8 +7727,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -7781,8 +7737,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -7810,9 +7764,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -7823,8 +7775,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -7835,8 +7785,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -7864,9 +7812,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -7877,8 +7823,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -7889,8 +7833,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -7918,9 +7860,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -7931,8 +7871,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 8, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -7943,8 +7881,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -7972,9 +7908,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -7985,8 +7919,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 14, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -7997,8 +7929,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -8026,9 +7956,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -8039,36 +7967,30 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 10, - "TableCellContentMaxWidth": 20, "Properties": { "colspan": "1" }, "Children": [ + { + "Type": "NodeKramdownSpanIAL", + "Data": "{: colspan=\"1\"}" + }, { "Type": "NodeText", "Data": "字體設置" } ] }, - { - "Type": "NodeKramdownSpanIAL", - "Data": "{: colspan=\"1\"}", - "TableCellContentWidth": 15, - "TableCellContentMaxWidth": 16 - }, { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 20, "Properties": { "colspan": "1" }, "Children": [ { - "Type": "NodeText", - "Data": "​" + "Type": "NodeKramdownSpanIAL", + "Data": "{: colspan=\"1\"}" }, { "Type": "NodeTextMark", @@ -8090,20 +8012,18 @@ } ] }, - { - "Type": "NodeKramdownSpanIAL", - "Data": "{: colspan=\"1\"}" - }, { "Type": "NodeTableCell", "Data": "td", "Properties": { "colspan": "1" - } - }, - { - "Type": "NodeKramdownSpanIAL", - "Data": "{: colspan=\"1\"}" + }, + "Children": [ + { + "Type": "NodeKramdownSpanIAL", + "Data": "{: colspan=\"1\"}" + } + ] } ] }, @@ -8114,8 +8034,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 20, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -8130,8 +8048,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -8160,9 +8076,11 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 4, - "TableCellContentMaxWidth": 20, "Children": [ + { + "Type": "NodeText", + "Data": "將選取內容設定為最近一次使用過的字體樣式" + }, { "Type": "NodeBr", "Data": "br" @@ -8178,8 +8096,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 8, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -8190,8 +8106,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -8210,9 +8124,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -8223,8 +8135,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -8235,8 +8145,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -8264,9 +8172,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -8277,8 +8183,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 8, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -8289,8 +8193,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -8309,9 +8211,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -8322,8 +8222,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -8334,8 +8232,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -8363,9 +8259,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -8376,8 +8270,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 8, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -8388,8 +8280,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 16, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -8398,7 +8288,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "```Enter" + "TextMarkTextContent": "```回車" }, { "Type": "NodeText", @@ -8427,8 +8317,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 4, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeBr", @@ -8445,8 +8333,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 10, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -8457,8 +8343,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -8478,8 +8362,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 20, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -8496,8 +8378,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 10, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -8508,8 +8388,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -8529,8 +8407,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 20, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -8547,8 +8423,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 10, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -8559,8 +8433,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 16, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -8589,6 +8461,15 @@ "TextMarkType": "kbd", "TextMarkTextContent": "[]" }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "【】" + }, { "Type": "NodeText", "Data": "​" @@ -8598,8 +8479,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 20, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -8616,8 +8495,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -8628,8 +8505,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 16, "Children": [ { "Type": "NodeText", @@ -8658,8 +8533,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 20, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -8677,7 +8550,7 @@ "HeadingLevel": 3, "Properties": { "id": "20211226122652-wez4zj6", - "updated": "20211226011912" + "updated": "20240517003743" }, "Children": [ { @@ -8696,7 +8569,7 @@ "Properties": { "colgroup": "|", "id": "20211226122652-ws33j83", - "updated": "20220829212957" + "updated": "20240516225424" }, "Children": [ { @@ -8710,8 +8583,6 @@ { "Type": "NodeTableCell", "Data": "th", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -8722,12 +8593,10 @@ { "Type": "NodeTableCell", "Data": "th", - "TableCellContentWidth": 8, - "TableCellContentMaxWidth": 15, "Children": [ { "Type": "NodeText", - "Data": "快捷鍵" + "Data": "操作" } ] } @@ -8742,24 +8611,20 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 12, - "TableCellContentMaxWidth": 12, "Properties": { "colspan": "1" }, "Children": [ + { + "Type": "NodeKramdownSpanIAL", + "Data": "{: colspan=\"1\"}" + }, { "Type": "NodeText", "Data": "轉換為段落" } ] }, - { - "Type": "NodeKramdownSpanIAL", - "Data": "{: colspan=\"1\"}", - "TableCellContentWidth": 15, - "TableCellContentMaxWidth": 15 - }, { "Type": "NodeTableCell", "Data": "td", @@ -8767,6 +8632,10 @@ "colspan": "1" }, "Children": [ + { + "Type": "NodeKramdownSpanIAL", + "Data": "{: colspan=\"1\"}" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -8774,18 +8643,18 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘0" + }, + { + "Type": "NodeText", + "Data": "​" } ] - }, - { - "Type": "NodeKramdownSpanIAL", - "Data": "{: colspan=\"1\"}" } ] }, @@ -8796,8 +8665,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 10, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -8808,9 +8675,11 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 15, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -8818,12 +8687,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘1" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -8836,8 +8709,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 10, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -8848,9 +8719,11 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 15, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -8858,12 +8731,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘2" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -8876,8 +8753,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 10, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -8888,9 +8763,11 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 15, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -8898,12 +8775,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘3" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -8916,8 +8797,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 10, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -8928,9 +8807,11 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 15, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -8938,12 +8819,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘4" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -8956,8 +8841,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 10, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -8968,9 +8851,11 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 15, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -8978,12 +8863,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘5" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -8996,8 +8885,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 10, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -9008,9 +8895,11 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 15, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9018,12 +8907,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘6" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9037,7 +8930,7 @@ "HeadingLevel": 3, "Properties": { "id": "20211226122652-td76oes", - "updated": "20211226011912" + "updated": "20240517003743" }, "Children": [ { @@ -9057,7 +8950,7 @@ "Properties": { "colgroup": "||", "id": "20211226122652-qj1o02k", - "updated": "20240428230757" + "updated": "20240517003743" }, "Children": [ { @@ -9084,7 +8977,7 @@ "Children": [ { "Type": "NodeText", - "Data": "快捷鍵" + "Data": "操作" } ] }, @@ -9259,7 +9152,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Enter" + "TextMarkTextContent": "Ctrl+回車" }, { "Type": "NodeText", @@ -9268,7 +9161,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Enter" + "TextMarkTextContent": "⌘回車" }, { "Type": "NodeText", @@ -9277,7 +9170,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "click" + "TextMarkTextContent": "點擊" }, { "Type": "NodeText", @@ -9322,7 +9215,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+Enter" + "TextMarkTextContent": "Alt+回車" }, { "Type": "NodeText", @@ -9331,7 +9224,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥Enter" + "TextMarkTextContent": "⌥回車" }, { "Type": "NodeText", @@ -9353,7 +9246,7 @@ "HeadingLevel": 3, "Properties": { "id": "20211226122652-x2dmpab", - "updated": "20211226011912" + "updated": "20240517003642" }, "Children": [ { @@ -9386,7 +9279,7 @@ "Properties": { "colgroup": "|", "id": "20211226122652-n2r88dm", - "updated": "20220902195513" + "updated": "20240516225420" }, "Children": [ { @@ -9400,8 +9293,6 @@ { "Type": "NodeTableCell", "Data": "th", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 24, "Children": [ { "Type": "NodeText", @@ -9412,12 +9303,10 @@ { "Type": "NodeTableCell", "Data": "th", - "TableCellContentWidth": 8, - "TableCellContentMaxWidth": 8, "Children": [ { "Type": "NodeText", - "Data": "快捷鍵" + "Data": "操作" } ] } @@ -9432,8 +9321,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 16, - "TableCellContentMaxWidth": 24, "Children": [ { "Type": "NodeText", @@ -9444,9 +9331,11 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 8, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9454,12 +9343,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⇧⌘T" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9472,8 +9365,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 16, - "TableCellContentMaxWidth": 24, "Children": [ { "Type": "NodeText", @@ -9484,9 +9375,11 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 8, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9494,12 +9387,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⇧⌘D" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9512,8 +9409,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 16, - "TableCellContentMaxWidth": 24, "Children": [ { "Type": "NodeText", @@ -9524,9 +9419,11 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 8, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9534,12 +9431,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⇧⌘L" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9552,8 +9453,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 16, - "TableCellContentMaxWidth": 24, "Children": [ { "Type": "NodeText", @@ -9564,9 +9463,11 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 8, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9574,12 +9475,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⇧⌘R" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9592,8 +9497,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 12, - "TableCellContentMaxWidth": 24, "Children": [ { "Type": "NodeText", @@ -9604,9 +9507,11 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 8, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9614,12 +9519,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘T" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9632,8 +9541,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 12, - "TableCellContentMaxWidth": 24, "Children": [ { "Type": "NodeText", @@ -9644,9 +9551,11 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 8, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9654,12 +9563,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘B" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9672,8 +9585,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 12, - "TableCellContentMaxWidth": 24, "Children": [ { "Type": "NodeText", @@ -9684,9 +9595,11 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 8, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9694,12 +9607,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘L" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9712,8 +9629,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 12, - "TableCellContentMaxWidth": 24, "Children": [ { "Type": "NodeText", @@ -9724,9 +9639,11 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 8, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9734,12 +9651,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌥⌘R" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9752,8 +9673,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 8, - "TableCellContentMaxWidth": 24, "Children": [ { "Type": "NodeText", @@ -9764,9 +9683,11 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 8, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -9774,12 +9695,383 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌘-" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "刪除行" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "Ctrl+Shift+-" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⇧⌘-" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "將游標移動到上一個元素" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "Shift+Tab" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⇧⇥" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "將游標移動到下一個元素" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "Tab" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⇥" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + } + ] + }, + { + "ID": "20240516222525-vof6ni8", + "Type": "NodeHeading", + "HeadingLevel": 2, + "Properties": { + "id": "20240516222525-vof6ni8", + "updated": "20240517003642" + }, + "Children": [ + { + "Type": "NodeText", + "Data": "搜索" + } + ] + }, + { + "ID": "20240516230318-f8qoz1n", + "Type": "NodeParagraph", + "Properties": { + "id": "20240516230318-f8qoz1n", + "updated": "20240516235055" + }, + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "tag", + "TextMarkTextContent": "注意" + }, + { + "Type": "NodeText", + "Data": "​:在搜尋介面使用快捷鍵。" + } + ] + }, + { + "ID": "20240516223624-k4zjpns", + "Type": "NodeTable", + "TableAligns": [ + 0, + 0 + ], + "Properties": { + "colgroup": "|", + "id": "20240516223624-k4zjpns", + "updated": "20240517003642" + }, + "Children": [ + { + "Type": "NodeTableHead", + "Data": "thead", + "Children": [ + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "th", + "Children": [ + { + "Type": "NodeText", + "Data": "名称" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "th", + "Children": [ + { + "Type": "NodeText", + "Data": "操作" + } + ] + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "導航" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "↑" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "↓" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "PageUp" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "PageDown" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "新建" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "Ctrl+N" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌘N" + }, + { + "Type": "NodeText", + "Data": "​" + } + ] + } + ] + }, + { + "Type": "NodeTableRow", + "Data": "tr", + "Children": [ + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "打開 / 打開文件位置" + } + ] + }, + { + "Type": "NodeTableCell", + "Data": "td", + "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "回車" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "雙擊" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9792,34 +10084,29 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 8, - "TableCellContentMaxWidth": 24, "Children": [ { "Type": "NodeText", - "Data": "刪除行" + "Data": "切換到下一個命中" } ] }, { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 8, "Children": [ - { - "Type": "NodeTextMark", - "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Shift+-" - }, { "Type": "NodeText", - "Data": " / " + "Data": "​" }, { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧⌘-" + "TextMarkTextContent": "點擊" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9832,34 +10119,56 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 24, - "TableCellContentMaxWidth": 24, "Children": [ { "Type": "NodeText", - "Data": "將游標移動到上一個元素" + "Data": "右側並排顯示打開" } ] }, { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 8, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Shift+Tab" + "TextMarkTextContent": "Alt+." }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧⇥" + "TextMarkTextContent": "Alt+點擊" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌥." + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌥點擊" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9872,34 +10181,29 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 24, - "TableCellContentMaxWidth": 24, "Children": [ { "Type": "NodeText", - "Data": "將游標移動到下一個元素" + "Data": "退出搜索" } ] }, { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 8, "Children": [ - { - "Type": "NodeTextMark", - "TextMarkType": "kbd", - "TextMarkTextContent": "Tab" - }, { "Type": "NodeText", - "Data": " / " + "Data": "​" }, { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇥" + "TextMarkTextContent": "Esc" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -9913,7 +10217,7 @@ "HeadingLevel": 2, "Properties": { "id": "20230316183455-9nz17tt", - "updated": "20230316183459" + "updated": "20240517003307" }, "Children": [ { @@ -9927,7 +10231,7 @@ "Type": "NodeParagraph", "Properties": { "id": "20230316183459-wukct4o", - "updated": "20230316183522" + "updated": "20240516235032" }, "Children": [ { @@ -9941,17 +10245,10 @@ }, { "Type": "NodeText", - "Data": "​:使用快捷键时,焦点需在 PDF 上,否则请点击 PDF。" + "Data": "​:使用快速鍵時,焦點需在 PDF 上,否則請點選 PDF。" } ] }, - { - "ID": "20230317224906-sryj6j3", - "Type": "NodeParagraph", - "Properties": { - "id": "20230317224906-sryj6j3" - } - }, { "ID": "20230316183920-tlv3jvd", "Type": "NodeTable", @@ -10905,7 +11202,7 @@ "HeadingLevel": 2, "Properties": { "id": "20220619002039-klsrtup", - "updated": "20220902200055" + "updated": "20240517003307" }, "Children": [ { @@ -10920,7 +11217,7 @@ "HeadingLevel": 3, "Properties": { "id": "20211226122652-jhdz9s3", - "updated": "20230503141733" + "updated": "20240517003307" }, "Children": [ { @@ -10939,7 +11236,7 @@ "Properties": { "colgroup": "|", "id": "20211226122652-ykdt6pc", - "updated": "20230503141751" + "updated": "20240517003307" }, "Children": [ { @@ -10953,8 +11250,6 @@ { "Type": "NodeTableCell", "Data": "th", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -10965,8 +11260,6 @@ { "Type": "NodeTableCell", "Data": "th", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 15, "Children": [ { "Type": "NodeText", @@ -10985,8 +11278,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 10, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -10997,8 +11288,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 8, - "TableCellContentMaxWidth": 15, "Children": [ { "Type": "NodeText", @@ -11007,11 +11296,11 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Click" + "TextMarkTextContent": "點擊" }, { "Type": "NodeText", - "Data": "​​" + "Data": "​" } ] } @@ -11024,8 +11313,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 10, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -11036,8 +11323,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 15, - "TableCellContentMaxWidth": 15, "Children": [ { "Type": "NodeText", @@ -11046,20 +11331,20 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Click" + "TextMarkTextContent": "Ctrl+點擊" }, { "Type": "NodeText", - "Data": "​​ / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Click" + "TextMarkTextContent": "⌘點擊" }, { "Type": "NodeText", - "Data": "​​" + "Data": "​" } ] } @@ -11072,8 +11357,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -11084,8 +11367,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 15, - "TableCellContentMaxWidth": 15, "Children": [ { "Type": "NodeText", @@ -11094,20 +11375,20 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+Click" + "TextMarkTextContent": "Alt+點擊" }, { "Type": "NodeText", - "Data": "​​ / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥Click" + "TextMarkTextContent": "⌥點擊" }, { "Type": "NodeText", - "Data": "​​" + "Data": "​" } ] } @@ -11120,8 +11401,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 8, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -11136,8 +11415,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 15, - "TableCellContentMaxWidth": 15, "Children": [ { "Type": "NodeText", @@ -11146,20 +11423,20 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Shift+Click" + "TextMarkTextContent": "Shift+點擊" }, { "Type": "NodeText", - "Data": "​​ / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧Click" + "TextMarkTextContent": "⇧點擊" }, { "Type": "NodeText", - "Data": "​​" + "Data": "​" } ] } @@ -11172,8 +11449,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -11184,8 +11459,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 8, - "TableCellContentMaxWidth": 15, "Children": [ { "Type": "NodeText", @@ -11198,7 +11471,7 @@ }, { "Type": "NodeText", - "Data": "​​" + "Data": "​" } ] } @@ -11211,8 +11484,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -11223,8 +11494,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 15, - "TableCellContentMaxWidth": 15, "Children": [ { "Type": "NodeText", @@ -11237,16 +11506,16 @@ }, { "Type": "NodeText", - "Data": "​​ / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌃+拖拽" + "TextMarkTextContent": "⌃拖拽" }, { "Type": "NodeText", - "Data": "​​" + "Data": "​" } ] } @@ -11259,24 +11528,16 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 12, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", - "Data": "生成塊" - }, - { - "Type": "NodeText", - "Data": "引用" + "Data": "生成塊引用" } ] }, { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 15, - "TableCellContentMaxWidth": 15, "Children": [ { "Type": "NodeText", @@ -11289,16 +11550,16 @@ }, { "Type": "NodeText", - "Data": "​​ / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥+拖拽" + "TextMarkTextContent": "⌥拖拽" }, { "Type": "NodeText", - "Data": "​​" + "Data": "​" } ] } @@ -11311,8 +11572,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 12, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -11323,8 +11582,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 15, - "TableCellContentMaxWidth": 15, "Children": [ { "Type": "NodeText", @@ -11337,16 +11594,16 @@ }, { "Type": "NodeText", - "Data": "​​ / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧+拖拽" + "TextMarkTextContent": "⇧拖拽" }, { "Type": "NodeText", - "Data": "​​" + "Data": "​" } ] } @@ -11360,7 +11617,7 @@ "HeadingLevel": 3, "Properties": { "id": "20221105230801-t6pdes8", - "updated": "20221105230938" + "updated": "20240517003118" }, "Children": [ { @@ -11495,7 +11752,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Click" + "TextMarkTextContent": "點擊" }, { "Type": "NodeText", @@ -11540,7 +11797,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Click" + "TextMarkTextContent": "Ctrl+點擊" }, { "Type": "NodeText", @@ -11549,7 +11806,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Click" + "TextMarkTextContent": "⌘點擊" }, { "Type": "NodeText", @@ -11598,7 +11855,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+Click" + "TextMarkTextContent": "Alt+點擊" }, { "Type": "NodeText", @@ -11607,7 +11864,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥Click" + "TextMarkTextContent": "⌥點擊" }, { "Type": "NodeText", @@ -11656,7 +11913,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Shift+Click" + "TextMarkTextContent": "Shift+點擊" }, { "Type": "NodeText", @@ -11665,7 +11922,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧Click" + "TextMarkTextContent": "⇧點擊" }, { "Type": "NodeText", @@ -11710,7 +11967,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Click" + "TextMarkTextContent": "點擊" }, { "Type": "NodeText", @@ -11755,7 +12012,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+Click" + "TextMarkTextContent": "Alt+點擊" }, { "Type": "NodeText", @@ -11764,7 +12021,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥Click" + "TextMarkTextContent": "⌥點擊" }, { "Type": "NodeText", @@ -11792,7 +12049,7 @@ "HeadingLevel": 3, "Properties": { "id": "20220619002223-dz6tv7l", - "updated": "20220619002401" + "updated": "20240517003118" }, "Children": [ { @@ -11812,7 +12069,7 @@ "Properties": { "colgroup": "||", "id": "20220619002223-k6apxvm", - "updated": "20230517155553" + "updated": "20240517002349" }, "Children": [ { @@ -11826,8 +12083,6 @@ { "Type": "NodeTableCell", "Data": "th", - "TableCellContentWidth": 8, - "TableCellContentMaxWidth": 22, "Children": [ { "Type": "NodeText", @@ -11842,8 +12097,6 @@ { "Type": "NodeTableCell", "Data": "th", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 11, "Children": [ { "Type": "NodeText", @@ -11854,8 +12107,6 @@ { "Type": "NodeTableCell", "Data": "th", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -11874,8 +12125,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 12, - "TableCellContentMaxWidth": 22, "Children": [ { "Type": "NodeText", @@ -11890,8 +12139,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 11, "Children": [ { "Type": "NodeText", @@ -11900,7 +12147,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Click" + "TextMarkTextContent": "點擊" }, { "Type": "NodeText", @@ -11910,9 +12157,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -11923,8 +12168,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 12, - "TableCellContentMaxWidth": 22, "Children": [ { "Type": "NodeText", @@ -11939,8 +12182,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 11, "Children": [ { "Type": "NodeText", @@ -11949,7 +12190,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Click" + "TextMarkTextContent": "Ctrl+點擊" }, { "Type": "NodeText", @@ -11958,7 +12199,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Click" + "TextMarkTextContent": "⌘點擊" }, { "Type": "NodeText", @@ -11968,9 +12209,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -11981,8 +12220,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 14, - "TableCellContentMaxWidth": 22, "Children": [ { "Type": "NodeText", @@ -11997,8 +12234,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 11, "Children": [ { "Type": "NodeText", @@ -12007,7 +12242,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+Click" + "TextMarkTextContent": "Alt+點擊" }, { "Type": "NodeText", @@ -12016,7 +12251,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥Click" + "TextMarkTextContent": "⌥點擊" }, { "Type": "NodeText", @@ -12026,9 +12261,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -12039,8 +12272,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 12, - "TableCellContentMaxWidth": 22, "Children": [ { "Type": "NodeText", @@ -12051,8 +12282,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 11, - "TableCellContentMaxWidth": 11, "Children": [ { "Type": "NodeText", @@ -12061,7 +12290,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Shift+Click" + "TextMarkTextContent": "Shift+點擊" }, { "Type": "NodeText", @@ -12070,7 +12299,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧Click" + "TextMarkTextContent": "⇧點擊" }, { "Type": "NodeText", @@ -12080,9 +12309,7 @@ }, { "Type": "NodeTableCell", - "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 20 + "Data": "td" } ] }, @@ -12093,8 +12320,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 22, - "TableCellContentMaxWidth": 22, "Children": [ { "Type": "NodeText", @@ -12105,8 +12330,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 11, "Children": [ { "Type": "NodeText", @@ -12117,6 +12340,15 @@ "TextMarkType": "kbd", "TextMarkTextContent": "Shift+懸浮" }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⇧懸浮" + }, { "Type": "NodeText", "Data": "​" @@ -12126,8 +12358,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 20, - "TableCellContentMaxWidth": 20, "Children": [ { "Type": "NodeText", @@ -12145,7 +12375,7 @@ "HeadingLevel": 3, "Properties": { "id": "20220619002223-zliquo3", - "updated": "20221107214854" + "updated": "20240517003118" }, "Children": [ { @@ -12253,7 +12483,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Click" + "TextMarkTextContent": "點擊" }, { "Type": "NodeText", @@ -12298,7 +12528,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Click" + "TextMarkTextContent": "Ctrl+點擊" }, { "Type": "NodeText", @@ -12307,7 +12537,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Click" + "TextMarkTextContent": "⌘點擊" }, { "Type": "NodeText", @@ -12356,7 +12586,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+Click" + "TextMarkTextContent": "Alt+點擊" }, { "Type": "NodeText", @@ -12365,7 +12595,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥Click" + "TextMarkTextContent": "⌥點擊" }, { "Type": "NodeText", @@ -12414,7 +12644,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Shift+Click" + "TextMarkTextContent": "Shift+點擊" }, { "Type": "NodeText", @@ -12423,7 +12653,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧Click" + "TextMarkTextContent": "⇧點擊" }, { "Type": "NodeText", @@ -12472,7 +12702,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Alt+Click" + "TextMarkTextContent": "Ctrl+Alt+點擊" }, { "Type": "NodeText", @@ -12481,7 +12711,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥⌘Click" + "TextMarkTextContent": "⌥⌘點擊" }, { "Type": "NodeText", @@ -12511,7 +12741,7 @@ "HeadingLevel": 3, "Properties": { "id": "20221107214844-w005hal", - "updated": "20221107214849" + "updated": "20240517003118" }, "Children": [ { @@ -12598,7 +12828,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Click" + "TextMarkTextContent": "點擊" }, { "Type": "NodeText", @@ -12637,7 +12867,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+Click" + "TextMarkTextContent": "Alt+點擊" }, { "Type": "NodeText", @@ -12646,7 +12876,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥Click" + "TextMarkTextContent": "⌥點擊" }, { "Type": "NodeText", @@ -12712,7 +12942,7 @@ "HeadingLevel": 3, "Properties": { "id": "20220619002223-79ns1mn", - "updated": "20220619002442" + "updated": "20240517003118" }, "Children": [ { @@ -12803,7 +13033,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Click" + "TextMarkTextContent": "點擊" } ] } @@ -12834,7 +13064,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Click" + "TextMarkTextContent": "Ctrl+點擊" }, { "Type": "NodeText", @@ -12843,7 +13073,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Click" + "TextMarkTextContent": "⌘點擊" } ] } @@ -12874,7 +13104,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Shift+Click" + "TextMarkTextContent": "Shift+點擊" }, { "Type": "NodeText", @@ -12883,7 +13113,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧Click" + "TextMarkTextContent": "⇧點擊" } ] } @@ -12897,7 +13127,7 @@ "HeadingLevel": 3, "Properties": { "id": "20220619002223-7cvwac5", - "updated": "20220619002455" + "updated": "20240517003118" }, "Children": [ { @@ -12984,7 +13214,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Click" + "TextMarkTextContent": "點擊" } ] } @@ -13019,7 +13249,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Ctrl+Click" + "TextMarkTextContent": "Ctrl+點擊" }, { "Type": "NodeText", @@ -13028,7 +13258,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌘Click" + "TextMarkTextContent": "⌘點擊" } ] } @@ -13063,7 +13293,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Alt+Click" + "TextMarkTextContent": "Alt+點擊" }, { "Type": "NodeText", @@ -13072,7 +13302,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⌥Click" + "TextMarkTextContent": "⌥點擊" } ] } @@ -13107,7 +13337,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "Shift+Click" + "TextMarkTextContent": "Shift+點擊" }, { "Type": "NodeText", @@ -13116,7 +13346,7 @@ { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "⇧Click" + "TextMarkTextContent": "⇧點擊" } ] } @@ -13130,7 +13360,7 @@ "HeadingLevel": 3, "Properties": { "id": "20220901210742-0cfjjd9", - "updated": "20220902200545" + "updated": "20240517003118" }, "Children": [ { @@ -13149,7 +13379,7 @@ "Properties": { "colgroup": "|", "id": "20220901210742-nhc2k8i", - "updated": "20220902200550" + "updated": "20240517003118" }, "Children": [ { @@ -13163,8 +13393,6 @@ { "Type": "NodeTableCell", "Data": "th", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -13175,8 +13403,6 @@ { "Type": "NodeTableCell", "Data": "th", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 6, "Children": [ { "Type": "NodeText", @@ -13195,8 +13421,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 8, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -13207,13 +13431,19 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 6, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "拖拽" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -13226,8 +13456,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 12, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -13238,13 +13466,28 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 6, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "拖拽+Alt" + "TextMarkTextContent": "Alt+拖拽" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌥拖拽" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -13257,8 +13500,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 12, - "TableCellContentMaxWidth": 12, "Children": [ { "Type": "NodeText", @@ -13269,13 +13510,28 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 6, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "Shift+拖拽" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", - "TextMarkTextContent": "拖拽+Shift" + "TextMarkTextContent": "⇧拖拽" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -13289,7 +13545,7 @@ "HeadingLevel": 3, "Properties": { "id": "20220902195608-jh61ukq", - "updated": "20220902195635" + "updated": "20240517002648" }, "Children": [ { @@ -13308,7 +13564,7 @@ "Properties": { "colgroup": "|", "id": "20220902195638-92scg94", - "updated": "20220902201113" + "updated": "20240517002648" }, "Children": [ { @@ -13322,8 +13578,6 @@ { "Type": "NodeTableCell", "Data": "th", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 31, "Children": [ { "Type": "NodeText", @@ -13334,8 +13588,6 @@ { "Type": "NodeTableCell", "Data": "th", - "TableCellContentWidth": 6, - "TableCellContentMaxWidth": 6, "Children": [ { "Type": "NodeText", @@ -13354,8 +13606,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 10, - "TableCellContentMaxWidth": 31, "Children": [ { "Type": "NodeText", @@ -13366,9 +13616,11 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 5, - "TableCellContentMaxWidth": 6, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", @@ -13376,12 +13628,16 @@ }, { "Type": "NodeText", - "Data": " / " + "Data": "​ / " }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "⌘C" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -13394,8 +13650,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 24, - "TableCellContentMaxWidth": 31, "Children": [ { "Type": "NodeText", @@ -13410,13 +13664,19 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 6, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "拖拽" + }, + { + "Type": "NodeText", + "Data": "​" } ] } @@ -13429,8 +13689,6 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 31, - "TableCellContentMaxWidth": 31, "Children": [ { "Type": "NodeText", @@ -13445,13 +13703,28 @@ { "Type": "NodeTableCell", "Data": "td", - "TableCellContentWidth": 2, - "TableCellContentMaxWidth": 6, "Children": [ + { + "Type": "NodeText", + "Data": "​" + }, { "Type": "NodeTextMark", "TextMarkType": "kbd", "TextMarkTextContent": "拖拽+Alt" + }, + { + "Type": "NodeText", + "Data": "​ / " + }, + { + "Type": "NodeTextMark", + "TextMarkType": "kbd", + "TextMarkTextContent": "⌥拖拽" + }, + { + "Type": "NodeText", + "Data": "​" } ] } diff --git a/app/src/boot/globalEvent/keydown.ts b/app/src/boot/globalEvent/keydown.ts index 9412cd81593..6479600b69e 100644 --- a/app/src/boot/globalEvent/keydown.ts +++ b/app/src/boot/globalEvent/keydown.ts @@ -41,9 +41,8 @@ import {unicode2Emoji} from "../../emoji"; import {deleteFiles} from "../../editor/deleteFile"; import {escapeHtml} from "../../util/escape"; import {syncGuide} from "../../sync/syncGuide"; -import {getStartEndElement, goEnd, goHome} from "../../protyle/wysiwyg/commonHotkey"; +import {duplicateBlock, getStartEndElement, goEnd, goHome} from "../../protyle/wysiwyg/commonHotkey"; import {getNextFileLi, getPreviousFileLi} from "../../protyle/wysiwyg/getBlock"; -import {hintMoveBlock} from "../../protyle/hint/extend"; import {Backlink} from "../../layout/dock/Backlink"; /// #if !BROWSER import {setZoom} from "../../layout/topBar"; @@ -336,6 +335,21 @@ const editKeydown = (app: App, event: KeyboardEvent) => { event.preventDefault(); return true; } + + if (!isFileFocus && !event.repeat && matchHotKey(window.siyuan.config.keymap.editor.general.duplicate.custom, event)) { + event.preventDefault(); + event.stopPropagation(); + let selectsElement: HTMLElement[] = Array.from(protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--select")); + if (selectsElement.length === 0) { + const nodeElement = hasClosestBlock(range.startContainer); + if (nodeElement) { + selectsElement = [nodeElement]; + } + } + duplicateBlock(selectsElement, protyle); + return true; + } + const target = event.target as HTMLElement; if (target.tagName !== "TABLE" && ["INPUT", "TEXTAREA"].includes(target.tagName)) { return false; @@ -607,7 +621,6 @@ const fileTreeKeydown = (app: App, event: KeyboardEvent) => { return true; } - if (matchHotKey(window.siyuan.config.keymap.general.addToDatabase.custom, event)) { execByCommand({ command: "addToDatabase", @@ -643,6 +656,15 @@ const fileTreeKeydown = (app: App, event: KeyboardEvent) => { return true; } + if (isFile && !event.repeat && matchHotKey(window.siyuan.config.keymap.editor.general.duplicate.custom, event)) { + event.preventDefault(); + event.stopPropagation(); + fetchPost("/api/filetree/duplicateDoc", { + id: liElements[0].getAttribute("data-node-id"), + }); + return true; + } + if (isFile && matchHotKey(window.siyuan.config.keymap.general.move.custom, event)) { window.siyuan.menus.menu.remove(); execByCommand({ diff --git a/app/src/editor/deleteFile.ts b/app/src/editor/deleteFile.ts index 1832cc5ff6c..a00ee4ca5d8 100644 --- a/app/src/editor/deleteFile.ts +++ b/app/src/editor/deleteFile.ts @@ -18,9 +18,13 @@ export const deleteFile = (notebookId: string, pathString: string) => { id: getDisplayName(pathString, true, true) }, (response) => { const fileName = escapeHtml(response.data.name); - let tip = `${window.siyuan.languages.confirmDelete} ${fileName}?`; + let tip = `${window.siyuan.languages.confirmDeleteTip.replace("${x}", fileName)} +
+
${window.siyuan.languages.rollbackTip.replace("${x}", window.siyuan.config.editor.historyRetentionDays)}
`; if (response.data.subFileCount > 0) { - tip = `${window.siyuan.languages.confirmDelete} ${fileName} ${window.siyuan.languages.andSubFile.replace("x", response.data.subFileCount)}?`; + tip = `${window.siyuan.languages.andSubFile.replace("${x}", fileName).replace("${y}", response.data.subFileCount)} +
+
${window.siyuan.languages.rollbackTip.replace("${x}", window.siyuan.config.editor.historyRetentionDays)}
`; } confirmDialog(window.siyuan.languages.deleteOpConfirm, tip, () => { fetchPost("/api/filetree/removeDoc", { @@ -40,7 +44,9 @@ export const deleteFiles = (liElements: Element[]) => { deleteFile(itemNotebookId, liElements[0].getAttribute("data-path")); } else { confirmDialog(window.siyuan.languages.deleteOpConfirm, - `${window.siyuan.languages.confirmDelete} ${Lute.EscapeHTMLStr(getNotebookName(itemNotebookId))}?`, () => { + `${window.siyuan.languages.confirmDeleteTip.replace("${x}", Lute.EscapeHTMLStr(getNotebookName(itemNotebookId)))} +
+
${window.siyuan.languages.rollbackTip.replace("${x}", window.siyuan.config.editor.historyRetentionDays)}
`, () => { fetchPost("/api/notebook/removeNotebook", { notebook: itemNotebookId, callback: Constants.CB_MOUNT_REMOVE @@ -61,7 +67,9 @@ export const deleteFiles = (liElements: Element[]) => { return; } confirmDialog(window.siyuan.languages.deleteOpConfirm, - window.siyuan.languages.confirmRemoveAll.replace("${count}", paths.length), () => { + `${window.siyuan.languages.confirmRemoveAll.replace("${count}", paths.length)} +
+
${window.siyuan.languages.rollbackTip.replace("${x}", window.siyuan.config.editor.historyRetentionDays)}
`, () => { fetchPost("/api/filetree/removeDocs", { paths }); diff --git a/app/src/mobile/menu/search.ts b/app/src/mobile/menu/search.ts index 219f9c6fafd..f459355801d 100644 --- a/app/src/mobile/menu/search.ts +++ b/app/src/mobile/menu/search.ts @@ -618,7 +618,7 @@ const initSearchEvent = (app: App, element: Element, config: Config.IUILayoutTab export const popSearch = (app: App, searchConfig?: any) => { const config: Config.IUILayoutTabSearchConfig = JSON.parse(JSON.stringify(window.siyuan.storage[Constants.LOCAL_SEARCHDATA])); - const rangeText = (getCurrentEditor()?.protyle.toolbar.range || (getSelection().rangeCount > 0 ? getSelection().getRangeAt(0) : document.createRange())).toString() + const rangeText = (getCurrentEditor()?.protyle.toolbar.range || (getSelection().rangeCount > 0 ? getSelection().getRangeAt(0) : document.createRange())).toString(); if (rangeText) { config.k = rangeText; } diff --git a/app/src/protyle/render/av/render.ts b/app/src/protyle/render/av/render.ts index 39586432364..783e3d9a7fb 100644 --- a/app/src/protyle/render/av/render.ts +++ b/app/src/protyle/render/av/render.ts @@ -156,7 +156,7 @@ style="width: ${column.width || "200px"}">${getCalcValue(column) || '
-
+
`; // body @@ -215,7 +215,7 @@ ${cell.color ? `color:${cell.color};` : ""}">${renderCell(cell.value, rowIndex)} ${tabHTML}
- +
@@ -245,11 +245,11 @@ ${cell.color ? `color:${cell.color};` : ""}">${renderCell(cell.value, rowIndex)}
- +
- ${response.data.isMirror ? ` + ${response.data.isMirror ? `
` : ""}
${response.data.name || ""}
diff --git a/app/src/protyle/render/av/select.ts b/app/src/protyle/render/av/select.ts index 7ba43be00b0..7fe5386c486 100644 --- a/app/src/protyle/render/av/select.ts +++ b/app/src/protyle/render/av/select.ts @@ -63,7 +63,7 @@ export const removeCellOption = (protyle: IProtyle, cellElements: HTMLElement[], const doOperations: IOperation[] = []; const undoOperations: IOperation[] = []; let mSelectValue: IAVCellSelectValue[]; - const avID = blockElement.getAttribute("data-av-id") + const avID = blockElement.getAttribute("data-av-id"); cellElements.forEach((item, elementIndex) => { if (!blockElement.contains(item)) { const rowElement = hasClosestByClassName(item, "av__row"); diff --git a/app/src/protyle/render/av/view.ts b/app/src/protyle/render/av/view.ts index 3d1800e4e9f..99ac7e9deef 100644 --- a/app/src/protyle/render/av/view.ts +++ b/app/src/protyle/render/av/view.ts @@ -7,6 +7,9 @@ import {getEditorRange} from "../../util/selection"; import {Constants} from "../../../constants"; export const openViewMenu = (options: { protyle: IProtyle, blockElement: HTMLElement, element: HTMLElement }) => { + if (options.protyle.disabled) { + return; + } const menu = new Menu("av-view"); if (menu.isOpen) { return; @@ -223,7 +226,7 @@ export const getSwitcherHTML = (views: IAVView[], viewId: string) => { return `
${html} diff --git a/app/src/protyle/wysiwyg/keydown.ts b/app/src/protyle/wysiwyg/keydown.ts index 97d614791f0..5da9f967f12 100644 --- a/app/src/protyle/wysiwyg/keydown.ts +++ b/app/src/protyle/wysiwyg/keydown.ts @@ -1439,17 +1439,6 @@ export const keydown = (protyle: IProtyle, editorElement: HTMLElement) => { return; } - if (!event.repeat && matchHotKey(window.siyuan.config.keymap.editor.general.duplicate.custom, event)) { - event.preventDefault(); - event.stopPropagation(); - let selectsElement: HTMLElement[] = Array.from(protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--select")); - if (selectsElement.length === 0) { - selectsElement = [nodeElement]; - } - duplicateBlock(selectsElement, protyle); - return; - } - if (!event.repeat && matchHotKey(window.siyuan.config.keymap.editor.general.ai.custom, event)) { event.preventDefault(); event.stopPropagation(); diff --git a/app/src/search/util.ts b/app/src/search/util.ts index 375e95e5191..88f353f65a8 100644 --- a/app/src/search/util.ts +++ b/app/src/search/util.ts @@ -23,7 +23,7 @@ import {addLoading} from "../protyle/ui/initUI"; import {getIconByType} from "../editor/getIcon"; import {unicode2Emoji} from "../emoji"; import {hasClosestByClassName} from "../protyle/util/hasClosest"; -import {isNotCtrl, setStorageVal, updateHotkeyTip} from "../protyle/util/compatibility"; +import {isNotCtrl, isMac, setStorageVal, updateHotkeyTip} from "../protyle/util/compatibility"; import {newFileByName} from "../util/newFile"; import { filterMenu, @@ -359,7 +359,7 @@ export const genSearch = (app: App, config: Config.IUILayoutTabSearchConfig, ele ${updateHotkeyTip(window.siyuan.config.keymap.general.newFile.custom)} ${window.siyuan.languages.new} ${window.siyuan.languages.enterKey}/${window.siyuan.languages.doubleClick} ${window.siyuan.languages.searchTip2} ${window.siyuan.languages.click} ${window.siyuan.languages.searchTip3} - ${updateHotkeyTip(window.siyuan.config.keymap.editor.general.insertRight.custom)}/${updateHotkeyTip("⌥")}+${window.siyuan.languages.click} ${window.siyuan.languages.searchTip4} + ${updateHotkeyTip(window.siyuan.config.keymap.editor.general.insertRight.custom)}/${isMac() ? "⌥" : "Alt+"}${window.siyuan.languages.click} ${window.siyuan.languages.searchTip4} Esc ${window.siyuan.languages.searchTip5}
diff --git a/kernel/api/av.go b/kernel/api/av.go index 9670bc62d8d..ca9d3858e8a 100644 --- a/kernel/api/av.go +++ b/kernel/api/av.go @@ -27,6 +27,19 @@ import ( "github.com/siyuan-note/siyuan/kernel/util" ) +func getAttributeViewSelectOptions(c *gin.Context) { + ret := gulu.Ret.NewResult() + defer c.JSON(http.StatusOK, ret) + + arg, ok := util.JsonArg(c, ret) + if !ok { + return + } + avID := arg["avID"].(string) + keyID := arg["keyID"].(string) + ret.Data = model.GetAttributeViewSelectOptions(avID, keyID) +} + func getMirrorDatabaseBlocks(c *gin.Context) { ret := gulu.Ret.NewResult() defer c.JSON(http.StatusOK, ret) diff --git a/kernel/api/router.go b/kernel/api/router.go index 77d4a4b474e..6de7dd86310 100644 --- a/kernel/api/router.go +++ b/kernel/api/router.go @@ -423,6 +423,7 @@ func ServeAPI(ginServer *gin.Engine) { ginServer.Handle("POST", "/api/av/getAttributeViewPrimaryKeyValues", model.CheckAuth, model.CheckReadonly, getAttributeViewPrimaryKeyValues) ginServer.Handle("POST", "/api/av/setDatabaseBlockView", model.CheckAuth, model.CheckReadonly, setDatabaseBlockView) ginServer.Handle("POST", "/api/av/getMirrorDatabaseBlocks", model.CheckAuth, model.CheckReadonly, getMirrorDatabaseBlocks) + ginServer.Handle("POST", "/api/av/getAttributeViewSelectOptions", model.CheckAuth, model.CheckReadonly, getAttributeViewSelectOptions) ginServer.Handle("POST", "/api/ai/chatGPT", model.CheckAuth, chatGPT) ginServer.Handle("POST", "/api/ai/chatGPTWithAction", model.CheckAuth, chatGPTWithAction) diff --git a/kernel/model/attribute_view.go b/kernel/model/attribute_view.go index 1a82c4bb1bd..edfcee6f060 100644 --- a/kernel/model/attribute_view.go +++ b/kernel/model/attribute_view.go @@ -41,6 +41,30 @@ import ( "github.com/xrash/smetrics" ) +func GetAttributeViewSelectOptions(avID string, keyID string) (ret []*av.SelectOption) { + ret = []*av.SelectOption{} + + attrView, err := av.ParseAttributeView(avID) + if nil != err { + logging.LogErrorf("parse attribute view [%s] failed: %s", avID, err) + return + } + + key, _ := attrView.GetKey(keyID) + if nil == key { + return + } + + if av.KeyTypeSelect != key.Type && av.KeyTypeMSelect != key.Type { + return + } + + if 0 < len(key.Options) { + ret = key.Options + } + return ret +} + func SetDatabaseBlockView(blockID, viewID string) (err error) { node, tree, err := getNodeByBlockID(nil, blockID) if nil != err {