check: fix for searching image:, brut: in header

This commit is contained in:
Cyrille L 2022-12-26 17:04:22 +01:00
parent 49fe9bcc91
commit 418254a45f
1 changed files with 4 additions and 2 deletions

View File

@ -528,6 +528,7 @@ def check_content(post_bottom):
# Check for _image:NAME from content in header # Check for _image:NAME from content in header
#--------------------------------------------- #---------------------------------------------
print(article_header)
for ln, line in enumerate(post_bottom): for ln, line in enumerate(post_bottom):
for tag in tyto.content_tags: for tag in tyto.content_tags:
htag_found = False htag_found = False
@ -535,9 +536,10 @@ def check_content(post_bottom):
tag_id = line.rsplit(':', 1)[1].rsplit(' ')[0] tag_id = line.rsplit(':', 1)[1].rsplit(' ')[0]
htag = tag[1: len(tag)] htag = tag[1: len(tag)]
if not re.search(r'^%s\s+\b%s\b|%s\b%s\b'%( rexp = r'|%s\s+\b%s\b|%s\b%s\b'%(
htag, tag_id, htag, tag_id htag, tag_id, htag, tag_id
), article_header): )
if not re.search(rexp, article_header):
tyto.exiting("10", "%s %s"%(htag, tag_id), True) tyto.exiting("10", "%s %s"%(htag, tag_id), True)