new-features #5

Merged
dan merged 73 commits from wordpress-nextcloud into dev 2023-12-04 12:46:32 +01:00
Showing only changes of commit 361c92a3df - Show all commits

View file

@ -174,10 +174,8 @@ def get_html_files(path, output_file_path):
output_file_path = os.path.abspath(output_file_path)
for p in pathlib.Path(path).rglob("*.html"):
print(p)
res = str(p.absolute())
if output_file_path in res:
print("damn")
continue
tmp = BeautifulSoup("".join(open(res)), features="html.parser")