diff --git a/cookbook/forms.py b/cookbook/forms.py
index c9d1aad7..6571ae10 100644
--- a/cookbook/forms.py
+++ b/cookbook/forms.py
@@ -268,6 +268,7 @@ class MealPlanForm(forms.ModelForm):
help_texts = {
'shared': _('You can list default users to share recipes with in the settings.'),
+ 'note': _('You can use markdown to format this field. See the docs here')
}
widgets = {'recipe': SelectWidget, 'date': DateWidget, 'shared': MultiSelectWidget}
diff --git a/cookbook/templates/meal_plan.html b/cookbook/templates/meal_plan.html
index ede72fe1..f1ea8b9e 100644
--- a/cookbook/templates/meal_plan.html
+++ b/cookbook/templates/meal_plan.html
@@ -127,7 +127,8 @@
placeholder="{% trans 'Title' %}" style="margin-bottom: 8px">
-
+ {% trans 'You can use markdown to format this field. See the docs here' %}
+