flashduty-knowledge-base 1.3.4 → 1.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -2
- package/dist/en.d.ts +2 -0
- package/dist/esm/en.js +362 -50
- package/dist/esm/zh.js +372 -61
- package/dist/iife/en.js +347 -35
- package/dist/iife/zh.js +357 -46
- package/dist/zh.d.ts +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -62,12 +62,24 @@ date: "2023-12-18T10:00:00+08:00"
|
|
|
62
62
|
|
|
63
63
|
[使用手册](https://alidocs.dingtalk.com/i/nodes/14lgGw3P8vBzjpwpuoARLPA385daZ90D)
|
|
64
64
|
|
|
65
|
+
[文档截图规范](https://alidocs.dingtalk.com/i/nodes/EpGBa2Lm8aaNxlelu0jnoZGR8gN7R35y)
|
|
66
|
+
|
|
65
67
|
- 润色文档
|
|
66
68
|
|
|
67
|
-
在 cursor
|
|
69
|
+
在 cursor 中,首先选择优秀的模型,建议选择推理模型,例如 Gemini-2.5-pro。使用下面的prompt对中文文档进行润色:
|
|
68
70
|
|
|
69
71
|
```
|
|
70
72
|
请你严格依照 @polish_instructions.md 的要求,对文档 @your_doc_name 进行润色。
|
|
71
73
|
```
|
|
72
74
|
|
|
73
|
-
完成润色后,可在 VSCode / Cursor 中打开文档,然后在文档 tab 页中右击,点击 `格式化文档`。
|
|
75
|
+
完成润色后,可在 VSCode / Cursor 中打开文档,然后在文档 tab 页中右击,点击 `格式化文档`。
|
|
76
|
+
|
|
77
|
+
- i18n
|
|
78
|
+
|
|
79
|
+
在 cursor 中,首先选择优秀的模型,建议选择推理模型,例如 Gemini-2.5-pro。使用下面的prompt对中文文档进行翻译:
|
|
80
|
+
|
|
81
|
+
```
|
|
82
|
+
请你严格依照 @polish_instructions.md 和 @i18n_instructions.md 的要求,将 @your_doc_name_ch.md 的内容翻译到 @your_doc_name_en.md 里。
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
完成润色后,可在 VSCode / Cursor 中打开文档,然后在文档 tab 页中右击,点击 `格式化文档`。**请校对针对关键操作的翻译是否和产品页面上的翻译保持一致。**
|