wip: Protect some HTML markers to base64 in article
This commit is contained in:
parent
413b6d2912
commit
06794ea31a
|
@ -113,7 +113,8 @@ def manage_wip(file_post, Force):
|
|||
# New line: | #
|
||||
# Anchors: >> #
|
||||
# Paragraphs: ( = <p> #
|
||||
# bCodes: (( = <precode> #
|
||||
# bCodes: [[ = <precode> #
|
||||
# Convert to HTML >> base64 #
|
||||
#----------------------------#
|
||||
def wip_begin_markers(wip_lines):
|
||||
global wip_html
|
||||
|
@ -140,7 +141,8 @@ def wip_begin_markers(wip_lines):
|
|||
line = line.replace(line, marker[1]%css_set)
|
||||
else:
|
||||
line = line.replace(line, marker[1])
|
||||
|
||||
convert_to_b64(line)
|
||||
line = b64_content
|
||||
wip_tmp = '%s%s\n'%(wip_tmp, line)
|
||||
|
||||
wip_html = wip_tmp
|
||||
|
|
Loading…
Reference in New Issue