Show More
@@ -986,10 +986,10 b' def extract_metatags(value):' | |||
|
986 | 986 | """ |
|
987 | 987 | Extract supported meta-tags from given text value |
|
988 | 988 | """ |
|
989 | tags = [] | |
|
989 | 990 | if not value: |
|
990 | return '' | |
|
991 | return tags, '' | |
|
991 | 992 | |
|
992 | tags = [] | |
|
993 | 993 | for key, val in tags_paterns.items(): |
|
994 | 994 | pat, replace_html = val |
|
995 | 995 | tags.extend([(key, x.group()) for x in pat.finditer(value)]) |
General Comments 0
You need to be logged in to leave comments.
Login now