From bfaad6d193efd2f536b4b2c5fd059e38c1ce76bd Mon Sep 17 00:00:00 2001 From: ggurdin <46800240+ggurdin@users.noreply.github.com> Date: Tue, 1 Apr 2025 15:27:25 -0400 Subject: [PATCH] chore: force vocab onto newline in activity markdown (#2308) --- lib/pangea/activity_planner/activity_plan_model.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pangea/activity_planner/activity_plan_model.dart b/lib/pangea/activity_planner/activity_plan_model.dart index 6a9be7755..4e892cbe0 100644 --- a/lib/pangea/activity_planner/activity_plan_model.dart +++ b/lib/pangea/activity_planner/activity_plan_model.dart @@ -53,7 +53,7 @@ class ActivityPlanModel { /// use step emoji for instructions String get markdown { String markdown = - ''' **$title** \n🎯 $learningObjective \n🪜 $instructions \n📖 '''; + ''' **$title** \n🎯 $learningObjective \n🪜 $instructions \n\n📖 '''; // cycle through vocab with index for (var i = 0; i < vocab.length; i++) { // if the lemma appears more than once in the vocab list, show the pos