update @ Fri Oct 6 21:58:48 EEST 2023

Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
Ari Archer 2023-10-06 21:58:48 +03:00
parent 98b874bb62
commit c2a839ec54
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: A50D5B4B599AF8A2
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
html-minifier
htmlmin
rcssmin
mistune
typing

View file

@ -24,7 +24,7 @@ from threading import Thread
from timeit import default_timer as code_timer
from warnings import filterwarnings as filter_warnings
import html_minifier.minify # type: ignore
import htmlmin # type: ignore
import mistune
import mistune.core
import mistune.inline_parser
@ -572,7 +572,7 @@ def process_css_file(file: str, out: str) -> None:
def min_html(code: str) -> str:
return html_minifier.minify.Minifier(code).minify() # type: ignore
return htmlmin.minify(code, True, True, True, True, True, True, True)
# markdown