We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
类似的问题在Issue #363 有提到过,经过分析代码发现 在src/modules/utils.ts 第29行开始解析easyscholar接口的数据,当读取easyscholar官方数据集为null时, 代码第37行直接return 0;,此时如果用户的自定义数据集有数据返回的话会得不到解析的机会 事实上对于很多会议类的文章,由于会议通常带简写和年份,官方数据集很难直接匹配到,因此很多人倾向于用可以模糊匹配的自定义数据集(例如CCF)才更为准确,我自己尝试修复了这个问题,准备提交一个PR,如果您觉得合适的话可以考虑合并
return 0;
修复前 修复后的效果
The text was updated successfully, but these errors were encountered:
fix: resolved issue MuiseDestiny#407
ee2234d
Merge pull request #408 from Rphone/master
00bee9a
fix: resolved issue #407
感谢贡献!
Sorry, something went wrong.
No branches or pull requests
类似的问题在Issue #363 有提到过,经过分析代码发现
在src/modules/utils.ts 第29行开始解析easyscholar接口的数据,当读取easyscholar官方数据集为null时,
代码第37行直接
return 0;
,此时如果用户的自定义数据集有数据返回的话会得不到解析的机会事实上对于很多会议类的文章,由于会议通常带简写和年份,官方数据集很难直接匹配到,因此很多人倾向于用可以模糊匹配的自定义数据集(例如CCF)才更为准确,我自己尝试修复了这个问题,准备提交一个PR,如果您觉得合适的话可以考虑合并
修复前


修复后的效果
The text was updated successfully, but these errors were encountered: