mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 10:55:17 +00:00
modify: ToDo -> TODO
This commit is contained in:
parent
ca3df352ab
commit
bab8ee9633
1 changed files with 4 additions and 4 deletions
|
|
@ -234,9 +234,9 @@ def convert_to_markdown_v2(output_data: dict,
|
|||
if gfm_supported:
|
||||
markdown_text += f"<tr><td>"
|
||||
if is_value_no(value):
|
||||
markdown_text += f"{emoji} <strong>No ToDo sections</strong>"
|
||||
markdown_text += f"{emoji} <strong>No TODO sections</strong>"
|
||||
else:
|
||||
markdown_text += f"{emoji} <strong>ToDo sections</strong><br><br>\n\n"
|
||||
markdown_text += f"{emoji} <strong>TODO sections</strong><br><br>\n\n"
|
||||
if isinstance(value, list):
|
||||
markdown_text += "<ul>\n"
|
||||
for todo_item in value:
|
||||
|
|
@ -247,9 +247,9 @@ def convert_to_markdown_v2(output_data: dict,
|
|||
markdown_text += f"</td></tr>\n"
|
||||
else:
|
||||
if is_value_no(value):
|
||||
markdown_text += f"### {emoji} No ToDo sections\n\n"
|
||||
markdown_text += f"### {emoji} No TODO sections\n\n"
|
||||
else:
|
||||
markdown_text += f"### {emoji} ToDo sections\n\n"
|
||||
markdown_text += f"### {emoji} TODO sections\n\n"
|
||||
if isinstance(value, list):
|
||||
for todo_item in value:
|
||||
markdown_text += f"- {format_todo_item(todo_item)}\n"
|
||||
|
|
|
|||
Loading…
Reference in a new issue