tangcent

Results 108 comments of tangcent

因为`@see`是一个单独的`tag`, 而`@link`混在注释里,也难区分具体想表明什么。 当然这里更多的可能也是我自己的使用习惯。

你这是导出`markdown`吗? 需要将Preferences(Settings) > Other Settings > EasyApi > Markdown > format type切换为`ULTIMATE`

配[swagger](https://easyyapi.com/framwork/swagger.html)了吗?

https://github.com/tangcent/easy-yapi/blob/e1be9fe9bd5cab6c15a1bebfcd4ca171a7290f37/third/swagger.config#L7 我测试了一下,是正常的: ```java @ApiParam(hidden = true) long xxx, ``` 你的用法是怎样的?

Hi @gzy1144, easy-yapi does not support PyCharm, nor does it support parsing Python code to generate API documentation.

If PyCharm cannot start due to the installation of _easy-yapi,_ you can go to PyCharm's installation directory, find the plugins folder, and delete the _easy-yapi_ plugin from there. After doing...

Interesting. It appears that PyCharm uses a separate directory for user-installed plugins. On my device, these plugins are located at '~/Library/Application Support/JetBrains/PyCharm2023.2/plugins'. In Windows, the corresponding path may be 'C:\Users\\AppData\Roaming\JetBrains\PyCharm\plugins'.

I tried installing the plugin on Windows, and I find it here: ![image](https://github.com/tangcent/easy-yapi/assets/17569144/f61e687c-efea-4536-9194-36bc4e5b4485)

1. I'm unsure if _easy-yapi_ is the only plugin you've installed recently. If you've added others, they could be causing compatibility issues, so consider disabling them to see if it...

> 不知道是存在,只有字啊常量之间才有覆盖关系,我看文档里面没有相关说明 没有覆盖关系,但有加载执行顺序。所以逻辑上部分规则可能表现得像覆盖关系。 可以看[ClassExportRuleKeys](https://github.com/tangcent/easy-yapi/blob/master/idea-plugin/src/main/kotlin/com/itangcent/idea/plugin/api/export/core/ClassExportRuleKeys.kt)中规则声明的mode。 如果一个规则类型为`StringRuleMode.SINGLE`的,又配置了多条,那第一个返回非空值的那一条生效后,就不执行其他条了。 `module.name`和`folder.name`都是这样的规则。 > 在上述几种情况下,只有方案一,模块内部能够读取到正确的 module.name 跟 folder.name,其他两种都不行 > 对于其余没有覆盖的到的属性,读取值是正常的 你可以加一些日志,比如这样: `````` module.name=groovy:logger.info("1") module.name=A folder.name=groovy:logger.info("2") folder.name=defaultFolderName `````` 也可以这样: `````` module.name=groovy:``` logger.info("1") return "a" ``` folder.name=groovy:``` logger.info("2") return...