wip: links are converted to base64

This commit is contained in:
Cyrille L 2022-11-18 15:52:02 +01:00
parent fc47d177e2
commit 623540a92a
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ def wip_begin_markers(wip_lines):
# Find if line hase marker and remplace
for marker in marks_html:
if re.match(marker[0], line):
if marker[2]: # Hass CSS
if marker[2]: # Has CSS
get_css(line)
line = line.replace(line, marker[1]%css_set)
else: