Skip to content

Commit c95eb51

Browse files
committed
try fix display problem
1 parent 9a0bfe0 commit c95eb51

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

evaluation_function/evaluation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ def evaluation_function(
5757
def append_feedback(title, text):
5858
# Use standard Markdown for all feedback items
5959
# Title as level 2 heading, text as Markdown body
60-
markdown_title = f"## {title.strip()}\n"
61-
markdown_body = text.strip() + "\n"
60+
markdown_title = f" ## {title.strip()}\n"
61+
markdown_body = " " + text.strip() + "\n"
6262
feedback_items.append((markdown_title, markdown_body))
6363

6464
def get_class_color(class_name):

0 commit comments

Comments
 (0)