미쳤습니다.
ㅋㅋㅋㅋ
h2, h3, h4, h5, h6 폰트 사이즈가 작아서
구글 블로그 기본 테마 html 백업한 거 던져 줬더니
알아서 수정해줍니다.
결과에 보면, txt 파일 다운로드 받을 수 있게 링크를 줍니다.
그거 적용하면 바로 테마 적용!!
# Load the original file
with open("/mnt/data/20240525-백업.txt", "r", encoding="utf-8") as file:
content = file.read()
# Modify the headings font sizes
modified_content = content.replace(
"/* Main",
"""
/* Headings
----------------------------------------------- */
h2, h3, h4, h5, h6 {
font-size: 1.5em;
}
/* Main"""
)
# Save the modified content back to a new file
with open("/mnt/data/modified_backup.txt", "w", encoding="utf-8") as file:
file.write(modified_content)
"/mnt/data/modified_backup.txt"
Tags:
블로그