1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

更新文档描述;release version 1.0.7

This commit is contained in:
zhangbk1
2024-04-07 16:44:20 +08:00
parent a8f7420d18
commit efa2136959
5 changed files with 12 additions and 8 deletions

View File

@@ -36,9 +36,9 @@ Or right-click on the selected text -> Convert string to...
#### 3. 选择转换目标,转换完成 <br>Select the conversion target and complete
## 支持的类型
## 支持的类型 Support Case
| 类型 | Type | 举例 e.g. |
| 类型 | Case | 举例 e.g. |
| ----------------------------------- | ------------------------ | ---------------- |
| 小驼峰(驼峰)命名 | Camel Case | fooBar |
| 大驼峰(帕斯卡)命名 | Pascal Case | FooBar |
@@ -50,6 +50,10 @@ Or right-click on the selected text -> Convert string to...
| 连字符(脊柱式) + 小驼峰(驼峰)命名 | Kebab Camel Case | foo-Bar |
| 连字符(脊柱式) + 大驼峰(帕斯卡)命名 | Kebab Pascal Case | Foo-Bar |
| 连字符(脊柱式) + 全大写命名 | Kebab Upper Case | FOO-BAR |
| 空格分隔命名 | Space Case | foo bar |
| 空格分隔 + 小驼峰(驼峰)命名 | Space Camel Case | foo Bar |
| 空格分隔 + 大驼峰(帕斯卡)命名 | Space Pascal Case | Foo Bar |
| 空格分隔 + 全大写命名 | Space Upper Case | FOO BAR |
| 全小写 | Lower Case | foo_bar / foobar |
| 全大写 | Upper Case | FOO_BAR / FOOBAR |