\n\n### 复现步骤\n\n_No response_\n\n### 相关日志输出\n\n```shell\n\n```\n\n### 附加信息\n\n_No response_",[2904],{"name":2868,"color":2869},7221,"添加菜单后,菜单名称为空","2025-02-08T08:13:04Z","https://github.com/halo-dev/halo/issues/7221",0.7918381,{"description":2911,"labels":2912,"number":2913,"owner":2871,"repository":2872,"state":2914,"title":2915,"updated_at":2916,"url":2917,"score":2918},"### 你当前使用的版本\n\n2.x\n\n### 描述一下此特性\n\n根据 Halo 文档中的 [代码贡献](https://docs.halo.run/2.0/contribution/pr#%E4%BB%A3%E7%A0%81%E8%B4%A1%E7%8C%AE%E6%AD%A5%E9%AA%A4) 可以发现到从 1.x 版本时候使用 `master` 分支,到 2.x 版本已改为使用 `main` 分支。\r\n但目前的 CONTRIBUTING 文件仍然是採用 1.x 的写法。\r\n\r\n目前有发现以下地方需要修正:\r\n- [halo/CONTRIBUTING.md at master · halo-dev/halo](https://github.com/halo-dev/halo/blob/master/CONTRIBUTING.md)\r\n- [halo/.github/pull_request_template.md at main · halo-dev/halo](https://github.com/halo-dev/halo/blob/main/.github/pull_request_template.md?plain=1)\r\n\r\n\n\n### 附加信息\n\nhttps://github.com/halo-dev/halo/pull/5353#issuecomment-1949646480\r\n\r\n/assign",[],5358,"closed","修正 2.x 版本下 CONTRIBUTING 文件中仍然沿用 1.x 版本的分支说明文字","2024-02-17T08:00:16Z","https://github.com/halo-dev/halo/issues/5358",0.7136525,{"description":2920,"labels":2921,"number":2924,"owner":2871,"repository":2872,"state":2914,"title":2925,"updated_at":2926,"url":2927,"score":2928},"### 系统信息\n\n\r\n\n\n### 使用的哪种方式运行?\n\nDocker\n\n### 发生了什么?\n\n\r\n\n\n### 相关日志输出\n\n_No response_\n\n### 附加信息\n\n_No response_",[2922],{"name":2923,"color":2869},"kind/support",5538,"console 后台页面的文档 title 如何修改 每次都是动态切换","2024-03-21T10:08:43Z","https://github.com/halo-dev/halo/issues/5538",0.7316867,{"description":2930,"labels":2931,"number":2941,"owner":2871,"repository":2872,"state":2914,"title":2942,"updated_at":2943,"url":2944,"score":2945},"### Your current Halo version\n\n2.13.0-SNAPSHOT\n\n### Describe this feature\n\nCurrently, we support declaring dependencies in plugin manifest file, please see below:\r\n\r\nhttps://github.com/halo-dev/halo/blob/fe3df4b2d772fc011def02b0058b71d18c76ead1/api/src/main/java/run/halo/app/core/extension/Plugin.java#L75\r\n\r\nBut we only check plugin dependencies during resolving plugins, we may receive an error like `Dependencies '[app-store-integration]' not found` in plugins page.\r\n\r\nSo I request to check dependencies when installing and upgrading plugins instead of during resolving.\n\n### Additional information\n\n/kind improvement\r\n/area core\r\n/area plugin\r\n/milestone 2.13.x",[2932,2935,2938],{"name":2933,"color":2934},"area/core","0052cc",{"name":2936,"color":2937},"kind/improvement","f714c6",{"name":2939,"color":2940},"area/plugin","181D31",5345,"Request to check dependencies when installing and upgrading plugins","2024-02-27T11:53:30Z","https://github.com/halo-dev/halo/issues/5345",0.77067614,{"description":2947,"labels":2948,"number":2951,"owner":2871,"repository":2872,"state":2914,"title":2952,"updated_at":2953,"url":2954,"score":2955},"### 你当前使用的版本\n\n2.13.1\n\n### 描述一下此特性\n\n\u003Cimg width=\"1440\" alt=\"截屏2024-03-21 20 21 47\" src=\"https://github.com/halo-dev/halo/assets/164335742/21b63657-cfc6-40d8-9642-b5f786f5da87\">\r\n首页的“更多特性”专区不可以操作 希望可以深入 或者可以完成跳转相关功能的展示\n\n### 附加信息\n\n_No response_",[2949],{"name":2950,"color":2869},"triage/unresolved",5560,"网页“更多特性”专区优化并完成相关开发","2024-03-22T02:20:03Z","https://github.com/halo-dev/halo/issues/5560",0.77378565,{"description":2957,"labels":2958,"number":2959,"owner":2871,"repository":2872,"state":2914,"title":2960,"updated_at":2961,"url":2962,"score":2963},"### Your current Halo version\n\n2.13.0-rc.1\n\n### Describe this feature\n\n开发者好!我是从Wordpress搬家到Halo的,之前在Wordpress里面,默认的链接都是类似`aa.com/123/`的,\r\n\r\n现在文章迁移到halo之后,链接变成了`aa.com/123`,由于之前在很多平台上都有留类似`aa.com/123/`这种末尾带`/`的链接,访客访问`aa.com/123/`会提示404,会给他们造成困扰,以为链接挂了。\r\n我借助ChatGPT,在nginx配置文件里面添加了重写规则:\r\n```nginx\r\n rewrite ^/(.*)/$ /$1 permanent;\r\n```\r\n意图将以斜杠(\"/\")结尾的请求重定向到没有斜杠的相同路径,目前来看可以解决一些问题。\r\n\r\n不过担心是否会存在如果有些资源(例如CSS文件)的URL以斜杠结尾也重定向导致其他问题?\r\n\r\n或者说是否有更好的解决方案?谢谢!\r\n\n\n### Additional information\n\n_No response_",[],5420,"Halo博客的链接问题,链接末尾带斜杠会导致404","2024-05-08T05:57:05Z","https://github.com/halo-dev/halo/issues/5420",0.7749585,{"description":2965,"labels":2966,"number":2967,"owner":2871,"repository":2872,"state":2914,"title":2968,"updated_at":2969,"url":2970,"score":2971},"### Prerequisites\n\n- [x] I have searched for related issues in the [Issues](https://github.com/halo-dev/halo/issues) list.\n- [x] This is a feature related to Halo. If it is not an issue with the project itself, it is recommended to submit it in the [Discussions](https://github.com/halo-dev/halo/discussions).\n- [x] If it is a feature suggestion for plugins and themes, please submit it in the respective plugin and theme repositories.\n\n### Your current Halo version\n\n2\n\n### Describe this feature\n\n当前halo导出文章导出的是html,手动改成markdown后看了下格式不太对,想请问下有什么方法能导出正常的markdown吗,就是和github上的README.md一样的格式那种\n\n### Additional information\n\n_No response_",[],7137,"想请教下怎么导出文章为markdown格式的","2024-12-14T03:38:48Z","https://github.com/halo-dev/halo/issues/7137",0.77700907,["Reactive",2973],{},["Set"],["ShallowReactive",2976],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$f4fKZX8-i1hja7gNDG2boeyOK3DhyS_MBmc8pISOif2Q":-1},"/halo-dev/halo/5876"]