mirror of
https://github.com/zhaoolee/ChineseBQB.git
synced 2026-01-12 21:54:55 +08:00
创建
This commit is contained in:
18
README.md
18
README.md
@@ -8,31 +8,31 @@
|
||||
|
||||
## 表情包目录
|
||||
|
||||
- [熊本熊BQB](https://zhaoolee.github.io/ChineseBQB/熊本熊BQB/)
|
||||
- [熊本熊BQB(当前收录31张)](https://zhaoolee.github.io/ChineseBQB/熊本熊BQB/)
|
||||
|
||||
|
||||
- [可爱男孩纸BQB](https://zhaoolee.github.io/ChineseBQB/可爱男孩纸BQB/)
|
||||
- [可爱男孩纸BQB(当前收录23张)](https://zhaoolee.github.io/ChineseBQB/可爱男孩纸BQB/)
|
||||
|
||||
|
||||
- [仓鼠🐹BQB](https://zhaoolee.github.io/ChineseBQB/仓鼠🐹BQB/)
|
||||
- [仓鼠🐹BQB(当前收录1张)](https://zhaoolee.github.io/ChineseBQB/仓鼠🐹BQB/)
|
||||
|
||||
|
||||
- [猫🐱BQB](https://zhaoolee.github.io/ChineseBQB/猫🐱BQB/)
|
||||
- [猫🐱BQB(当前收录35张)](https://zhaoolee.github.io/ChineseBQB/猫🐱BQB/)
|
||||
|
||||
|
||||
- [狗🐶BQB](https://zhaoolee.github.io/ChineseBQB/狗🐶BQB/)
|
||||
- [狗🐶BQB(当前收录40张)](https://zhaoolee.github.io/ChineseBQB/狗🐶BQB/)
|
||||
|
||||
|
||||
- [金馆长熊猫🐼BQB](https://zhaoolee.github.io/ChineseBQB/金馆长熊猫🐼BQB/)
|
||||
- [金馆长熊猫🐼BQB(当前收录151张)](https://zhaoolee.github.io/ChineseBQB/金馆长熊猫🐼BQB/)
|
||||
|
||||
|
||||
- [猪🐖BQB](https://zhaoolee.github.io/ChineseBQB/猪🐖BQB/)
|
||||
- [猪🐖BQB(当前收录5张)](https://zhaoolee.github.io/ChineseBQB/猪🐖BQB/)
|
||||
|
||||
|
||||
- [可爱的女孩纸BQB](https://zhaoolee.github.io/ChineseBQB/可爱的女孩纸BQB/)
|
||||
- [可爱的女孩纸BQB(当前收录100张)](https://zhaoolee.github.io/ChineseBQB/可爱的女孩纸BQB/)
|
||||
|
||||
|
||||
- [苏大强BQB](https://zhaoolee.github.io/ChineseBQB/苏大强BQB/)
|
||||
- [苏大强BQB(当前收录33张)](https://zhaoolee.github.io/ChineseBQB/苏大强BQB/)
|
||||
|
||||
BQBEND
|
||||
|
||||
|
||||
7
build.py
7
build.py
@@ -15,14 +15,18 @@ def auto_less_to_css(file_dir):
|
||||
print("files:::", files)
|
||||
print("==="*10)
|
||||
md_content = ""
|
||||
# 记录数量
|
||||
img_num = 0
|
||||
md_content = md_content + "\n## "+ root.split("/")[-1] + "\n"
|
||||
for file in files:
|
||||
try:
|
||||
if ((file[-4:] == ".gif")or(file[-4:] == ".jpg")or(file[-4:] == ".png")):
|
||||
|
||||
file_info = ["https://raw.githubusercontent.com/zhaoolee/ChineseBQB/master", (root+'/')[1:], file]
|
||||
img_addr = "".join(file_info)
|
||||
print(img_addr)
|
||||
md_content = md_content + "\n---\n" + "\n\n"+"[" + img_addr + "]("+ img_addr +")"+"\n"+"---"+"\n"
|
||||
img_num = img_num + 1
|
||||
|
||||
except Exception as e:
|
||||
print(e)
|
||||
@@ -37,9 +41,10 @@ def auto_less_to_css(file_dir):
|
||||
|
||||
|
||||
html_path_atom = "https://zhaoolee.github.io/ChineseBQB/"+root.split("/")[-1]+"/"
|
||||
html_path.append("- ["+html_path_atom.split("/")[-2]+"]("+html_path_atom+")")
|
||||
html_path.append("- ["+html_path_atom.split("/")[-2]+"(当前收录"+str(img_num)+"张)"+"]("+html_path_atom+")")
|
||||
|
||||
md_content = ""
|
||||
img_num = 0
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user