We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9c90a2d + 0ea44dd commit 00b5cd9Copy full SHA for 00b5cd9
1 file changed
v2_utils.py
@@ -46,7 +46,8 @@ def week_data_formatter(html_content, type):
46
task_list_html = tasks_per_week[i] if i < len(tasks_per_week) else ""
47
weekly_updates.append({
48
'week': i + 1,
49
- 'content': task_list_html.strip()
+ 'content': re.sub(r'<[^>]+>', '',task_list_html).strip()
50
+
51
})
52
return weekly_updates
53
0 commit comments