Skip to content

Instantly share code, notes, and snippets.

https://press.one/p/address/v?s=9c6d1883612edaa18636a340306d247d912cf23fb4701e04fa8037df6148c8f82732f1152d7063554312261134b1e3c9a60bbc65f06f6f8e9717657ec561a46b0&h=f923ee5b1c77c1aa32e43504405dd6779ceabedbcc072328b6b4345d8d7ba8f0&a=180f1d687b105501c975a3f4b2e3ad0a24bcf23b&f=P1&v=2
# -*- coding: UTF-8 -*-
# !/usr/bin/python
# read content from the html file
file = open('/Users/marco/PycharmProjects/StyleReplace/wechat.html' ,'r')
str = file.read()
# replace head 2 label
h2Start = '''<p style="line-height: 25.6px; max-width: 100%; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); background-color: rgb(255, 255, 255); box-sizing: border-box !important; word-wrap: break-word !important;"><strong style="max-width: 100%; color: rgb(41, 148, 128); line-height: 25.6px; box-sizing: border-box !important; word-wrap: break-word !important;"></strong></p>
<p style="max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important;"><strong style="max-width: 100%; color: rgb(41, 148, 128); line-height: 25.6px; box-sizing: border-box !important; word-wrap: break-word !important;"><span style="max-width: 100%; font-size: 24px; box-sizing: border-box !important; word-wrap: break-word !important;"> ''';