File tree 3 files changed +3
-4
lines changed
3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ def get_issues_by_owner_id(owner, issue):
260
260
if val ['body_text' ]:
261
261
if "Weekly Goals" in val ['body_text' ] and not w_goal_url :
262
262
w_goal_url = val ['body_text' ]
263
- plain_text_body = markdown2 .markdown (val ['body_text' ])
263
+ plain_text_body = markdown .markdown (val ['body_text' ])
264
264
265
265
tasks = re .findall (r'\[(x| )\]' , plain_text_body )
266
266
total_tasks = len (tasks )
Original file line number Diff line number Diff line change 1
1
import traceback ,re
2
2
from flask import Blueprint , jsonify , request
3
- import markdown2
4
3
import markdown
5
4
from utils import require_secret_key
6
5
from db import SupabaseInterface
@@ -60,7 +59,7 @@ def get_issues_by_owner_id_v2(owner, issue):
60
59
61
60
if ("Weekly Learnings" in val ['body_text' ] and not w_learn_url ):
62
61
w_learn_url = val ['body_text' ]
63
- plain_text_wurl = markdown2 .markdown (val ['body_text' ])
62
+ plain_text_wurl = markdown .markdown (val ['body_text' ])
64
63
65
64
66
65
# mentors = mentors_data['mentors']
Original file line number Diff line number Diff line change 1
- import logging ,re ,markdown2
1
+ import logging ,re ,markdown
2
2
3
3
# Func to create name and link for all mentors and contributors
4
4
def define_link_data (usernames ):
You can’t perform that action at this time.
0 commit comments