diff --git a/joint_teapot/utils/joj3.py b/joint_teapot/utils/joj3.py index df6fcd1..21e010c 100644 --- a/joint_teapot/utils/joj3.py +++ b/joint_teapot/utils/joj3.py @@ -202,9 +202,11 @@ def generate_title_and_comment( comment += " - Failed" comment += "\n" for i, result in enumerate(stage["results"]): + comment += "
" comment += f"Case {i} - Score: {result['score']}\n" if result["comment"].strip() != "": - comment += f"
\n\n{result['comment']}\n
\n\n" + comment += f"{result['comment']}\n" + comment += "
\n\n" total_score += result["score"] comment += "\n" title = f"JOJ3 Result for {exercise_name} - Score: {total_score}"