template parsing: allow whitespace in tags #314

Closed
jmplace wants to merge 1 commits from jmplace/ScoDoc-Lille:correction_mise_en_page_latex into master
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ def get_tags_latex(code_latex):
"""
if code_latex:
# changé par EV: était r"([\*]{2}[a-zA-Z0-9:éèàâêëïôöù]+[\*]{2})"
res = re.findall(r"([\*]{2}[^ \t\n\r\f\v\*]+[\*]{2})", code_latex)
res = re.findall(r"([\*]{2}[^\t\n\r\f\v\*]+[\*]{2})", code_latex)
return [tag[2:-2] for tag in res]
else:
return []