update readme.

This commit is contained in:
小迪同学 2026-01-17 19:47:20 +08:00
parent 92743491e0
commit 13bc739380
3 changed files with 9 additions and 9 deletions

View File

@ -27,9 +27,9 @@
<!-- 快速导航 -->
<div>
<a href="#-项目简介"><strong>📖 项目简介</strong></a>
<a href="#-使用说明"><strong>🚀 使用说明</strong></a>
<a href="#-使用说明三种方式"><strong>🚀 使用说明</strong></a>
<a href="#-图标预览"><strong>✨ 图标预览</strong></a>
<a href="#-请求新图标"><strong>🎯 请求图标</strong></a>
<a href="https://github.com/xushier/HD-Icons/issues/new/choose"><strong>🎯 请求图标</strong></a>
</div>
<!-- 活动图表 -->
@ -142,9 +142,9 @@
>
> 🚀 **自部署方案**[HD-Icons-docker](https://github.com/xushier/HD-Icons-docker)
## ✨ 图标预览(当前共计 1558 个)
> 🎨 **持续更新中**:图标数量不断增加,欢迎提交新图标请求
## ✨ 图标预览
> 🎨 **持续更新中**:当前共计 1558 个,数量不断增加,欢迎提交新图标请求
### 📦 圆角矩形图标
<div align="center">
<img src="_icons-radius.jpg" alt="圆角矩形图标集合" width="90%">

View File

@ -27,9 +27,9 @@
<!-- 快速导航 -->
<div>
<a href="#-项目简介"><strong>📖 项目简介</strong></a>
<a href="#-使用说明"><strong>🚀 使用说明</strong></a>
<a href="#-使用说明三种方式"><strong>🚀 使用说明</strong></a>
<a href="#-图标预览"><strong>✨ 图标预览</strong></a>
<a href="#-请求新图标"><strong>🎯 请求图标</strong></a>
<a href="https://github.com/xushier/HD-Icons/issues/new/choose"><strong>🎯 请求图标</strong></a>
</div>
<!-- 活动图表 -->
@ -142,9 +142,9 @@
>
> 🚀 **自部署方案**[HD-Icons-docker](https://github.com/xushier/HD-Icons-docker)
## ✨ 图标预览(当前共计 0 个)
## ✨ 图标预览
> 🎨 **持续更新中**图标数量不断增加,欢迎提交新图标请求
> 🎨 **持续更新中**当前共计 0 个,数量不断增加,欢迎提交新图标请求
### 📦 圆角矩形图标
<div align="center">

View File

@ -43,7 +43,7 @@ for line in lines:
# lines.insert(circle_line_number + 2, " ".join(circle_img_tags))
lines.insert(svg_line_number + 3, " ".join(svg_img_tags))
lines = ["## ✨ 图标预览(当前共计 " + str(all_nums) + "" if '## ✨ 图标预览(当前共计 0 个)' in i else i for i in lines]
lines = ["> 🎨 **持续更新中**当前共计 " + str(all_nums) + ",数量不断增加,欢迎提交新图标请求" if '> 🎨 **持续更新中**:当前共计 0 个,数量不断增加,欢迎提交新图标请求' in i else i for i in lines]
# Write the new file
with open(readme_path, "w", encoding="UTF-8") as f: