Skip to content

Commit 28e4a6f

Browse files
committed
Update
1 parent e989495 commit 28e4a6f

File tree

5 files changed

+30
-4
lines changed

5 files changed

+30
-4
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/.idea
22
/temp
33
*.zip
4-
release.*
4+
release.*
5+
media/~$logo.pptx

Deploy/CombineCSS.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def combine_import(file_path, target_file_path):
3333
# 迭代写入文件
3434
with open(target_file_path, 'a', encoding='UTF-8') as target_f:
3535
lines = re.sub(r"@import '(.*)';", "", lines)
36-
target_f.write(lines + '\n')
36+
target_f.write(lines + '\n\n')
3737

3838

3939
# 设定目录

Deploy/Replace.py

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# A program designed to deploy README.md file
2+
3+
import os
4+
import re
5+
6+
# 设定目录
7+
print('Turn to Root directory...')
8+
os.chdir('..\\')
9+
root_dir = os.getcwd() + '\\'
10+
target_dir = root_dir + '\\release\\'
11+
print('<< Root directory: ' + root_dir)
12+
print('<< Target directory: ' + target_dir)
13+
14+
15+
16+
print('>> Processing README.md: ')
17+
os.popen('copy 1.txt.py 2.txt.py')
18+
19+
20+
combine_import(file_name, target_dir + file_name)
21+
22+
23+
with open(target_file_path, 'a', encoding='UTF-8') as target_f:
24+
lines = re.sub(r"@import '(.*)';", "", lines)
25+
target_f.write(lines + '\n\n')

media/logo.pptx Deploy/logo.pptx

File renamed without changes.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ typora-copy-images-to: ../../media/theme/Liquid
1212
---
1313
# Liquid
1414

15-
A nice theme for Typora, inspired by [Purple Theme](https://github.com/hliu202/typora-purple-theme) and [Microsoft Fluent Design](https://www.microsoft.com/design/fluent/#/). This theme provides outstanding visual effects for Windows 11.
15+
A nice theme for Typora, inspired by [Microsoft Fluent Design](https://www.microsoft.com/design/fluent/#/) and [Purple Theme](https://github.com/hliu202/typora-purple-theme). This theme provides outstanding visual effects for Windows 11.
1616

17-
![logo](/media/theme/liquid/logo.png)
17+
[English Readme](https://github.com/Fentaniao/Liquid/blob/main/README.md) | [中文文档](https://github.com/Fentaniao/Liquid/blob/Liquid/README_zh.md)
1818

1919
## Support list
2020

0 commit comments

Comments
 (0)